* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    line-height: 1.5em;
}

body {
    background-image: url(/assets/img/fondo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

main {
    background-color: rgb(245, 245, 245);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    gap: 2em;
    width: 70%;
    margin: auto;
    padding: 2em;
    align-items: flex-start;
}

header {
    background-color: #2d323a8f;
    text-align: center;
    color: red;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 1em;
    border-bottom: 4px solid red;
}

article {
    display: flex;
    gap: 1.5em;
    padding: 30px;
    border-bottom: 2px solid rgb(238, 238, 238);
    align-items: start;
}

article img {
    width: 225px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 5em;
}

nav li {
    padding: 1.6em;
}

nav a {
    padding: 1em;
    color: rgb(255, 0, 0);
    font-weight: 900;
    text-decoration: none;
}

nav a:hover {
    background-color: rgb(155, 18, 18);
    color: white;
    border-radius: 5px;
}

aside h2 {
    color: rgb(238, 238, 238);
    font-size: 1.5em;
    text-transform: uppercase;
}

aside ul li {
    color: rgb(238, 238, 238);
}

footer {
    text-align: center;
    padding: 2em;
    background-color: #2d323aa4;
    color: rgb(255, 255, 255);
    
}

footer h3 {
    margin-bottom: 10px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: white;
    text-decoration: none;
  
    margin: 5px;
}

footer a:hover {
    background-color: rgb(155, 18, 18);
    color: white;
    border-radius: 5px;
}

.link{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

p{
    margin: 20px;
}