*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


/* Reseteo básico para que el body y html ocupen toda la altura */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

/* Estilo para el video de fondo */
.bgvideo {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover; /* Esto asegura que el video cubra toda la pantalla */
    background-size: cover;
}

/* Contenedor para el contenido de la página */
.content {
    position: relative;
    z-index: 1;
    color: white; /* Ajusta el color del texto si es necesario */
    text-align: center;
    padding: 20px;
}


.container{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 140px;
    height: 140px;
    margin-top: -70px;
    margin-left: -70px; 
}

.container, .container buttton{
    font-weight: 300;
}

/* Estilo de la imagen con las mismas propiedades del botón */
.container .styled-image {
    position: relative;
    width: 100%;
    height: auto; /* Ajusta la altura automáticamente en función del ancho */
    padding: 1px;
    border-radius: 50%; /* Esto hará que la imagen sea circular si es cuadrada */
    border: 0;
    cursor: pointer;
    transition: all 0.1s;
    transition-duration: 0.8s;
    transition-property: transform;
    box-shadow: 0px 20px 30px -10px #26394d;
    
    /* Para las imágenes, no se puede usar background-image, pero puedes aplicar un overlay si lo necesitas. */
    background-color: #36a7b9; /* Esto agregará un fondo detrás de la imagen en caso de que sea transparente */
}

/* Para aplicar efectos de hover como en el botón */
.container .styled-image:hover {
    transform: scale(1.05); /* Un ligero aumento en tamaño al hacer hover */
}


.container button{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 50%;
    border: 0;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.1s;
    transition-duration: 0.8s;
    transition-property: transform;
    background-image: linear-gradient(#0600cd, #36a7b9);
    box-shadow: #26394d, 0px 20px 30px -10px;
}

.container button:hover{
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
}

.container ul{
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
}

.container li{
    position: absolute;
    width: 0;
    height: 100%;
    margin: 0 50%;
    transition: all 0.8s ease-in-out;
}

.container li input{
    display: none;
}

.container li input + label{
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 0;
    height: 0;
    line-height: 1px;
    margin-left: 0;
    /* background: #fff; */
    color: #fff;
    background-image: linear-gradient(#09eec8 0%, #086d86);
    border-radius: 50%;
    text-align: center;
    font-size: 1px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.8s ease-in-out, color 0.1s, background 0.1s;  
}

.container li input + label:hover{
    background: #fff;
    font-size: 14px;
    color: #040404;

}

.container .li input + label:hover {
    transform: scale(1.05); /* Un ligero aumento en tamaño al hacer hover */
}

.container li input:checked + label{
    color: #fff;
    transition: 0.5s;
    box-shadow: 0 0 20px #eee;
    background-image: linear-gradient(#09eec8 0%, #086d86);

}

.container.open li input + label{
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-left: -40px;
    font-size: 14px;
    box-shadow: #29292959 0px 5px 15px;    
}

h1{
    color: #fff;

}

@keyframes rotate{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    
    }
}


