html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;

    color: white;

    background:
        radial-gradient(circle at 20% 30%, #101b70 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, #351060 0%, transparent 30%),
        linear-gradient(135deg, #02051c, #07164a, #09021d);

    min-height: 100vh;

    overflow-x: hidden;
}

#title{
    text-align: left;
    color: whitesmoke;
    font-size: 30px;
    border: solid 4px #351060;
    border-radius: 5px;
    padding: 15px 20px 20px 15px;
    background-color: #351060;
}

.imagen{
    width: 400px;
    height: 400px;
    float: right;
    margin: 20px 100px;
    border: solid 5px black;
}

.introduccion{
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    margin:100px 0;
    text-align: center;
    padding: 15px 0px;
}

.video{
    width: 500px;
    height: 300px;
}

.boton {
    background-color: orange;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    margin: 20px 20px 20px 20px;
    transition: all 0.3s ease;
}

.boton:hover {
    background-color: #ff6600;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.menu {
    display: flex;
    gap: 15px;
    width: 100%;
    margin: 20px 0;
}

.opcion {
    flex: 1;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.opcion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.opcion span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 20px;
}

.opcion:hover {
    transform: scale(1.05);
}

.opcion:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}