: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;
}

* {
    box-sizing: border-box;
}


.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);
}

#extraContent1 {
  color: white;
  z-index: 9999;
 
  margin: 0;
  line-height: 2;

  filter: blur(1px) contrast(0.9);
  -webkit-font-smoothing: none;
  font-size: 14px;
  transform-origin: top left;
}


#low-quality {
  color: white;
  z-index: 9999;
  margin: 0;
  line-height: 2;

  filter: blur(1px) contrast(0.9);
  -webkit-font-smoothing: none;
  font-size: 14px;
  transform-origin: top left;
}

.active {
        text-decoration: underline;
        font-weight: bold;
        color: #ffffff; /* Cambia el color si lo deseas */
    }

 
        /* Puntos en el mapa que son clicables */
        .clickable-area {
            cursor: pointer;
        }



/* Estilos del contenedor de la imagen principal */
        .container {
            position: relative;
            width: 400px;
            margin: auto;
            margin-bottom: 50px;
        }

        /* Imagen principal del mapa */
        .image-map {
            width: 400px;
            height: auto;
        }

        /* Estilos para las imágenes pequeñas */
        .small-image {
            position: absolute; /* Relativo al contenedor */
            display: none; /* Ocultas por defecto */
            border: none;
            width: 400px;
            height: auto;
            z-index: 10; /* Asegura que las imágenes pequeñas aparezcan encima de la imagen grande */
        }

        /* Puntos en el mapa que son clicables */
        .clickable-area {
            cursor: pointer;
        }



/* 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;
    }
}