/* Comentario acá */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Encode+Sans:wght@100..900&display=swap');

body {
    background-color: rgb(125, 166, 180);
    font-family: "Archivo Black", sans-serif;
}
main {
    background-color: rgb(24, 214, 182);
    width: 800px; 
    max-width: 100%;
    margin: 0 auto 0 auto;
}

 h2, h3, {
    font-family: "Encode Sans", sans-serif;
text-align: left;
}

h4
{ font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
text-align: left;
}

h5
{ font-family: 'Times New Roman', Times, serif;
text-align: left;
}


header, footer {
    color: rgb(255, 255, 255);
    background-image: url(img/3333.png);
    background-color: rgb(128, 185, 105);
    padding: 50px;
    text-align: center;

}
nav {
    border-bottom: 2px solid black 
    }
section {
    padding: 10px;
}

nav ul {
    list-style: none;

}

nav li {
    display: inline;
}

nav li a {
    color: azure;
    text-decoration: none;
    padding: 10px;
}

nav li a:hover {
    color: azure;
    background-color: black;
    text-decoration: none;
    padding: 10px;
}

.adaptable {
    display: block;         /* Hace que la imagen se comporte como un bloque */
    width: 50%;             /* Define el ancho de la imagen */
    margin-left: auto;      /* Empuja la imagen desde la izquierda */
    margin-right: auto;     /* Empuja la imagen desde la derecha */
    /* object-position: center;  <-- Esta línea no es necesaria para centrar la imagen en su contenedor */
}

html {
    scroll-behavior: smooth;
}

.destacado {
    background-color: brown;
}