@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 105%;
    min-height: 100%;
    transform: translateX(calc((100% - 100vw) / 2));
    z-index: -2;
}

#seccion-juego-tennis,
#palabra-mas-larga,
#digito-verificador,
#adn {
    height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;

}

.contenedor-principal {
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: antiquewhite;
    gap: 2rem;
}

.arriba-contenedor-principal {
    width: 100%;
    height: 10%;
    text-align: center;
    font-size: 1.5rem;
}

.under-container {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.under-container>button {
    width: 10%;
    height: 10%;
    cursor: pointer;
    background: linear-gradient(to bottom right, #5a73a1 40%, #1680c7);
    color: white;
    font-weight: 700;
    border-radius: 5px;
    border: 0;
}

.under-container>button:hover {
    box-shadow: 0 0 30px lightblue;
    background: linear-gradient(to bottom right, #1680c7, #5a73a1 40%);
    cursor: pointer;
}

.under-container-adn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid white;
    border-radius: 15px;

}

.arriba-content-container {
    height: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}


.arriba-content-container input {
    width: 60%;
    height: 20%;
    border-radius: 10px;
}

.arriba-content-container button {
    width: 30%;
    height: 20%;
    cursor: pointer;
    background: linear-gradient(to bottom right, #5a73a1 40%, #1680c7);
    color: white;
    border-radius: 5px;
    border: 0;
}

.arriba-content-container button:hover {
    box-shadow: 0 0 30px lightblue;
    background: linear-gradient(to bottom right, #1680c7, #5a73a1 40%);
    cursor: pointer;
}

.abajo-content-container {
    height: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.abajo-content-container table {
    height: 80%;
    width: 80%;
    text-align: center;
    border: 1px solid;
}

.abajo-content-container button {
    width: 20%;
    height: 30%;
    cursor: pointer;
    background: linear-gradient(to bottom right, #5a73a1 40%, #1680c7);
    color: white;
    border-radius: 5px;
    border: 0;
}

.abajo-content-container button:hover {
    box-shadow: 0 0 30px lightblue;
    background: linear-gradient(to bottom right, #1680c7, #5a73a1 40%);
    cursor: pointer;
}
