body {
    background-color: #121212;
    color: #fff;
    font-family: Arial, sans-serif;
}

header, footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-around;
    flex-direction: row-reverse;
}

header img {
    max-width: 100px; /* Ajustar el tamaño según sea necesario */
    height: auto;
    border-radius: 50%; /* Hace que la imagen sea circular */
}

h1 {
    margin: 0;
    color: #fff;
    font-style: italic; /* Letra itálica */
    text-align: center; /* Centra horizontalmente el texto */
}

main {
    padding: 20px;
}

article {
    background-color: #222;
    padding: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

h2 {
    color: #fff;
}

nav {
    display: flex;
    margin-top: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px; /* Espacio entre los enlaces */
}

nav a:last-child {
    margin-right: 0; /* Elimina el margen derecho del último enlace */
}


a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

ul{
    list-style-type: none;
    margin: 0 auto;
    background-color: #333;
    color: #fff;
    padding: 20px;
    
}

main img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    border-radius: 3%;
    margin-bottom: 15px;
  }