@keyframes rebote {
    0% { transform: translateX(0), translateY(0); }
    25% { transform: translateY(-5px); } /* Mueve 5px a la izquierda */ 
    50% { transform: translateY(0);}/* Mueve 5px a la derecha */
    75% { transform: translateY(-5px); } /* Izquierda de nuevo */
    100% { transform: translateY(0); }
}

#button111 {
    animation: rebote 2.5s infinite;
}

.video-fondo {
    position: fixed; /* Deja el video fijado */
    z-index: -1; /* Pone el video en el fondo del todo */
    right: 0;
    bottom: 0;
    min-width: 100%; /* Ponen el video a escala completa */
    min-height: 100%;
}

.container-main {
    margin: 0 auto; /* Pone los margenes autos y centra el cuadro */
    width: 70%;
    height: auto;
    z-index: 0; /* Pone el texto principal por encima del video */
    background-color: rgba(0, 21, 255, 0.75);
    border: 5px solid rgb(0, 17, 205);
    border-style: double;
    flex-wrap: wrap;
}

.inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.border3 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
}


.banner {
    background-color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,


            0 0 20px rgb(0, 115, 255), 
            0 0 25px rgb(0, 115, 255);
    -webkit-text-fill-color: rgb(0, 115, 255);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    font-size: 50px;
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px;
    z-index: 2;   
}

.banner h1:hover {
    cursor: pointer;
}

.banner img {
    width:50%;
}

.bannerwelcome {
    width: auto;
    height: 100px;
}

.initials-banner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    gap: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

.separator-news {
    margin-top: 2px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: "Cheri", sans-serif;
    -webkit-text-fill-color: rgb(4, 54, 114);
    height: 25px;
    width: 100%;
    background: linear-gradient(rgb(58, 115, 184), rgb(255, 255, 255));
    border-radius: 3px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.25);
}

.separator p {
    margin-top: 15px;
}

.clock {
    margin-top: 2px;
    background: linear-gradient(rgb(58, 115, 184), rgb(255, 255, 255));
    height: 25px;
    width: 150px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Cheri", sans-serif;
    -webkit-text-fill-color: rgb(4, 54, 114);
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.25);
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;
    margin: 10px;
    flex-wrap: wrap; /* Permite que los containers se wrap */
}

.about {
    align-items: center;
    position: relative;
}

.wrap1 {
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 1; /* Deja que el container se posicione */
}

.container-aboutme {
    width: 100%;
    max-width: 250px;
    height: 510px;
    margin: 2%;
    border: 5px solid rgb(0, 115, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(white, rgb(0, 115, 255));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */
}

.container-aboutme h1{
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(0, 115, 255), 
            0 0 25px rgb(0, 115, 255);
    -webkit-text-fill-color: rgb(0, 115, 255);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px;   
}

.container-aboutme h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.fotodeperfil {
    height: 120px;
    width: 120px;
    border: 10px solid white;
    border-style: double;
    border-radius: 15px;
    filter: drop-shadow(5px 5px 10px rgba(1, 38, 65, 0.53));
    transition: transform 0.5s ease;
}

.fotodeperfil:hover{
    transform: scale(1.1);
}

.text-aboutme {
    font-family: "Cheri", sans-serif;
    font-size: small;
    margin: 20px;
    background: rgba(255, 255, 255, 0.75);
    padding: 5px;
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(0, 115, 255);
}

.container-updates {
    width: 100%;
    max-width: 275px;
    height: 245px;
    border: 5px solid rgb(0, 115, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(white, rgb(0, 115, 255));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */  
}

.container-updates h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(0, 115, 255), 
            0 0 25px rgb(0, 115, 255);
    -webkit-text-fill-color: rgb(0, 115, 255);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px;  

}

.container-updates h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.text-updates {
    font-family: "Cheri", sans-serif;
    font-size: small;
    width: 210px;
    height: 200px;
    overflow-y: auto;
    margin: 10px;
    background: rgba(255, 255, 255, 0.75);
    padding: 5px;
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(0, 115, 255);
}


.container-home{
    width: 100%;
    height: 510px;
    margin: 2%;
    border: 5px solid rgb(0, 115, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(white, rgb(0, 115, 255));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */
}

.container-home h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(0, 115, 255), 
            0 0 25px rgb(0, 115, 255);
    -webkit-text-fill-color: rgb(0, 115, 255);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px;
    margin-bottom: 45px;
}

.container-home h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.text-home {
    font-family: "Cheri", sans-serif;
    font-size: small;
    width: 250px;
    height: 75%;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(0, 115, 255);
    
}

.text-home h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.text-home p {
    margin: 10%;
    margin-top: 8%;
    margin-left: 7%;
    margin-bottom: 0%;
}

.text-home img {
    margin: 10%;
    margin-left: 5%;
    margin-bottom: 5%;
    width: 75px;
    float: right;
    border: 10px solid white;
    border-style: double;
    border-radius: 15px;
    filter: drop-shadow(5px 5px 5px rgba(1, 38, 65, 0.53));
    transition: transform 0.5s ease;
}

.text-home img:hover {
    transform: scale(1.1);
}

.cbox {
    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 1; /* Deja que el container se posicione */
} 

.container-navigation {
    display: flex;
    justify-content: top;
    align-items: center;
    flex-direction: column;
    margin-top: 6px;
    width: 100%;
    max-width: 225px;
    height: 775px;
    border: 5px solid rgb(0, 115, 255);
    background: linear-gradient(white, rgb(0, 115, 255));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */
}

.container-navigation h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            0 0 20px rgb(0, 115, 255), 
            0 0 25px rgb(0, 115, 255);
    -webkit-text-fill-color: rgb(0, 115, 255);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px; 
}

.container-navigation h1:hover {
    cursor: pointer;
    animation: rebote 1.5s infinite;
}

.clasificator {
    background: linear-gradient(rgb(0, 115, 255), rgb(182, 222, 255));
    display: flex;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.links {
    font-family: "Cheri", sans-serif;
    font-size: medium;
    background: rgba(255, 255, 255, 0.35);
    padding: 5px;
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(0, 115, 255);
    margin: 20px;
    margin-top: 5px;
}

.container-updates {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: 245px;
    border: 5px solid rgb(0, 115, 255);
    background: linear-gradient(white, rgb(0, 115, 255));
    border-radius: 12px;
    box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.3);
    flex-shrink: 1; /* Deja que el container se posicione */ 
}

.container-updates h1 {
    text-shadow:
            -2px -2px 0 #ffffff,  2px -2px 0 #ffffff,
            -2px  2px 0 #ffffff,  2px  2px 0 #ffffff,

            -4px -4px 0 #000,  4px -4px 0 #000,
            -4px  4px 0 #000,  4px  4px 0 #000,
            -4px  0px 0 #000,  4px  0px 0 #000,
             0px -4px 0 #000,  0px  4px 0 #000,

            0 0 20px rgb(0, 115, 255), 
            0 0 25px rgb(0, 115, 255);
    -webkit-text-fill-color: rgb(0, 115, 255);
    font-family: 'Cheri', sans-serif;
    border: 5px solid rgba(0, 115, 255, 0);
    border-bottom: 0px;
    border-top: 0px;
    border-radius: 5px; 
}

.text-updates {
    font-family: "Cheri", sans-serif;
    font-size: small;
    width: 200px;
    overflow-y: auto;
    height: 200px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 0px;
    margin-bottom: 5px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    border-style:dashed;
    border-color: rgb(0, 115, 255);
}


.stamps {
    height: 60px;
    width: 100%;
    z-index: 10;
    transition: transform 1s ease;
}

.stamps img:hover {
    transform: scale(1.1);
}


.text-aboutme ul {
            list-style: none; /* Quita los puntos negros de la lista */
            padding-left: 0;  /* Quita el espacio extra a la izquierda */
        }

.text-aboutme li {
            position: relative; /* Necesario para posicionar elementos */
            padding-left: 30px; /* Espacio para que quepa la imagen a la izquierda */
            line-height: 1.5;   /* Altura de línea para mejor lectura */
        }

.text-aboutme li::before {
            content: '';            /* Obligatorio para que aparezca el elemento */
            position: absolute;     /* Posición absoluta respecto al <li> */
            left: 10px;
            right: 3px;
            top: 3px;
            
            /* --- Aquí configuras tu imagen --- */
            width: 8px;            /* Ancho de tu icono */
            height: 8px;           /* Alto de tu icono */
            background-image: url('https://i.ibb.co/SxNnb96/IMG-6943.gif'); /* LA RUTA DE TU IMAGEN */
            background-size: contain; /* Ajusta la imagen al tamaño del cuadro */
            background-repeat: no-repeat; /* Evita que la imagen se repita */
        }


.links ul {
            list-style: none; /* Quita los puntos negros de la lista */
            padding-left: 0;  /* Quita el espacio extra a la izquierda */
        }

.links li {
            position: relative; /* Necesario para posicionar elementos */
            padding-left: 30px; /* Espacio para que quepa la imagen a la izquierda */
            line-height: 1.5;   /* Altura de línea para mejor lectura */
        }

.links li::before {
            content: '';            /* Obligatorio para que aparezca el elemento */
            position: absolute;     /* Posición absoluta respecto al <li> */
            left: 10px;
            top: 3px;
            right: 3px;
            
            /* --- Aquí configuras tu imagen --- */
            width: 10px;            /* Ancho de tu icono */
            height: 10px;           /* Alto de tu icono */
            background-image: url('https://i.ibb.co/SxNnb96/IMG-6943.gif'); /* LA RUTA DE TU IMAGEN */
            background-size: contain; /* Ajusta la imagen al tamaño del cuadro */
            background-repeat: no-repeat; /* Evita que la imagen se repita */
        }


.text-updates ul {
            list-style: none; /* Quita los puntos negros de la lista */
            padding-left: 0;  /* Quita el espacio extra a la izquierda */
        }

.text-updates li {
            position: relative; /* Necesario para posicionar elementos */
            padding-left: 30px; /* Espacio para que quepa la imagen a la izquierda */
            line-height: 1.5;   /* Altura de línea para mejor lectura */
        }

.text-updates li::before {
            content: '';            /* Obligatorio para que aparezca el elemento */
            position: absolute;     /* Posición absoluta respecto al <li> */
            left: 10px;
            right: 3px;
            top: 3px;
            
            /* --- Aquí configuras tu imagen --- */
            width: 10px;            /* Ancho de tu icono */
            height: 10px;           /* Alto de tu icono */
            background-image: url('https://i.ibb.co/SxNnb96/IMG-6943.gif'); /* LA RUTA DE TU IMAGEN */
            background-size: contain; /* Ajusta la imagen al tamaño del cuadro */
            background-repeat: no-repeat; /* Evita que la imagen se repita */
        }