
body{
    display: grid;
    min-height: 100dvh;
    grid-template-rows: auto 1fr auto;
}

.container{
    grid-template-columns: 1fr;
    grid-gap: 1em;
    padding: 1em;
}

#titulo{
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(58, 170, 125);
}

section{
    color: rgb(106, 106, 106);
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    font-size: medium;
}
/* Enlace no visitado */
a:link {
    font-weight: bold;
    color: rgb(58, 170, 125); /* Color del enlace cuando aún no ha sido visitado */
    text-decoration: none;
}

/* Enlace visitado */
a:visited {
    color: green; /* Color del enlace después de haber sido visitado */
    text-decoration: none; /* Eliminar subrayado predeterminado */
}

/* Estilo cuando el usuario pasa el cursor sobre el enlace */
a:hover {
    text-decoration: underline; /* Puedes añadir un subrayado cuando se pasa el cursor, si lo deseas */
}

/* Estilo cuando el enlace está enfocado (por ejemplo, al hacer clic o navegar con teclado) */
a:focus {
    color: rgb(0, 77, 0); /* El mismo color que en :hover */
    outline: none; /* Eliminar el contorno predeterminado al hacer clic */
}

/* Estilo cuando el enlace está activo (por ejemplo, mientras se hace clic) */
a:active {
    color: rgb(0, 77, 0); /* El mismo color que en :hover */
}


footer{
    background-color: #41ADF2;
    color: white; 
    padding: 1em;
    text-align: center;
}

.navbar-brand {
    margin-top: 2px;
    text-align: center;
}



.navbar-brand img {
    width: 220px;
    height: 100px;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
}

h1{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

h2 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px !important;
    color: slategrey;
}

@media (max-width: 600px) {
    .navbar {
        text-align: center;
        padding: 5px 10px;
    }

    .navbar-brand img {
        width: 150px;
        height: auto;
    }
}

/* 🔵 Celulares grandes y tablets pequeñas (600px a 768px) */
@media (min-width: 600px) and (max-width: 768px) {
    .navbar-brand img {
        width: 180px;
        height: auto;
    }

    
}

/* 🟠 Tablets y pantallas medianas (768px a 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar-brand img {
        width: 200px;
        height: auto;
    }

    
}

/* 🔴 Pantallas grandes (más de 1200px) */
@media (min-width: 1200px) {
    .navbar-brand img {
        width: 250px;
        height: auto;
    }

}

p{
    font: Arial
}