          :root {
    
    --body-bg-image: url('https://file.garden/Zu2jDVGrRwegVt1G/Fondo.jpg');

    --content: #43256E;
}



            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */


         
          @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
                font-weight: bold;
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
                font-style: italic;
            }

            @font-face {
                font-family: Nunito;
                src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
                font-style: italic;
                font-weight: bold;
            }


body {
                font-family: 'Nunito', sans-serif;
                margin: 0;
                background-color: #6ef3ff;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: cover;
                background-color: #6ef3ff;
                background-image: var(--body-bg-image);
                 background-repeat: no-repeat;
                background-attachment: scroll;
            }


            * {
                box-sizing: border-box;
            }



      

/* Fondo de imagen fija */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://file.garden/Zu2jDVGrRwegVt1G/Fondo.jpg'); /* Cambia esto con la ruta de tu imagen */
    background-size: cover; /* La imagen se ajusta para que quepa completamente */
    background-position: bottom; /* Centra la imagen horizontalmente y alinea a la parte inferior */
    z-index: -1; /* Mantener detrás del contenido */
}



h1, p {
    margin-bottom: 20px;
}

/* El espacio extra para permitir el scroll - ajusta la altura aquí */
.extra-space {
    height: 100vh; /* Aquí puedes cambiar el valor para decidir cuánto ocupa el extra space */
}



.container {
    text-align: center;
}

:root {
    --body-bg-image: url('https://file.garden/Zu2jDVGrRwegVt1G/Fondo.jpg');
    --content: #43256E;
    --header-color: #FFC42D;
    --navbar-color: #FF9000;
    --navbar-text-color: #ffffff;
    --sidebar-color: #8ABE59;
    --box-color: #00AAFF;
    --text-color: #155851;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background: var(--body-bg-image) no-repeat center/cover, #6ef3ff;
}


.translate-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--navbar-color);
    color: var(--navbar-text-color);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.translate-btn:hover {
    transform: scale(1.1);
}

.extra-content {
    color: #8ABE59 !important;
    font-size: 1rem; /* Ajusta el tamaño según tu preferencia */
    background-color: transparent; /* Opcional: asegura que no tenga fondo extraño */
    padding: 10px; /* Espaciado opcional */
    line-height: 1.5; /* Mejora la legibilidad */
}


* {
    box-sizing: border-box;
}

.active {
        text-decoration: underline;
        font-weight: bold;
        color: #ffffff; /* Cambia el color si lo deseas */
    }
    
    
    
    
    
    
    
    
.contenedor {
            position: relative;
            width: 400px;
            height: 100px;
            display: flex;
            align-items: center;
        }

        .imagen {
            position: absolute;
            width: 60px; /* Ajusta el tamaño según necesites */
            animation: mover 2s linear infinite;
        }

        @keyframes mover {
            from {
                left: 0; /* Empieza fuera de la pantalla */
            }
            to {
                left: 300px; /* Se mueve hasta el otro lado */
            }
        }

        
/* Slider */
.pfp {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: block;
}

.slider {
    position: relative;
    width: 250px;
    height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider img {
    width: 100%;
    height: 250px;
    display: none;
}

.slider img.active {
    display: block;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 20px;
}

.slider-controls button {
    background-color: white;
    color: black;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.slider-controls button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Fondo de imagen fija */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://file.garden/Zu2jDVGrRwegVt1G/Fondo.jpg') no-repeat bottom/cover;
    z-index: -1;
}

h1, p {
    margin-bottom: 20px;
}

.extra-space {
    height: 100vh;
}

.columna {
    display: grid;
    place-items: center;
    height: 100%;
}


/* Estilos de contenedores principales */
#container {
    max-width: 900px;
    margin: 0 auto;
}

#container a {
    color: white;
    font-weight: bold;
}

#header {
    width: 100%;
    background-color: var(--header-color);
    height: 150px;
}


            /* navigation section!! */
            nav {
                height: 40px;
                background-color: #FF9000;
                /* navbar color */
                width: 100%;
            }

            nav ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            nav li {
                position:relative;
                padding-top: 10px;
            }

            /* navigation links*/
            nav li a {
                color: #ED64F5;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            nav li ul {
                background-color: #FF94B0;
                text-align: center;
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 200px;
            }
            nav li a:hover {
                color: #FF9000;
                text-decoration: underline;
            }
        
            nav li:hover ul {
                display: inline;
                align: center;
                color: #FF9000;
            }
            
#flex {
    display: flex;
    justify-content: space-between;
}

/* Estilos para las columnas */
#leftSidebar, #rightSidebar {
    background-color: var(--sidebar-color);
    width: 200px;
    padding: 20px;
    font-size: smaller;
}

main {
    background-color: white;
    flex: 1;
    padding: 20px;
}

/* Footer */
footer {
    background-color: var(--navbar-color);
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    color: white;
}

h1, h2, h3 {
    color: var(--text-color);
}

h1 {
    font-size: 25px;
}

strong {
    color: var(--navbar-text-color);
}

/* Estilo de caja */
.box {
    background-color: var(--box-color);
    border: 2px solid white;
    padding: 10px;
    color: white;
}

/* Barra superior */
#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: var(--navbar-color);
}

/* Responsive */
@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}