body {
    margin: 0;
    padding: 0;
    font-family: verdana, sans-serif;
}

header {
    background-color: #4CAF50;
    padding: 10px 0;
}
nav ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, auto);
    align-items: center;
    justify-content: center;
    gap: 30px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 22px;
    font-weight: bold;
}


nav ul li:nth-child(3) img {
    width: 170px;
}

main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 20px;
}


h1 {
    color: red;
    display: grid;
    gap: 20px;
    grid-column-start: 3;
    grid-column-end:  1;
    grid-row-start: 1;
    grid-row-end:  3;
    position: absolute;
    top: 40%;
    left: 10%;
}

section {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: auto;
    height: 100vh;
}

section img {
    scale: 110%;
    align-self: center;
}

section div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60%;
}

section p {
    text-align: justify;
}

aside {
    background-color: #FFA07A;
    padding: 20px;
    text-align: center;
}

aside img {
    width: 50%;
    max-width: 300px;
}

h2 {
    color: #8B0000;
}

footer {
    background-color: #4CAF50;
    text-align: center;
    padding: 10px;
    color: rgb(0, 0, 0);
}
footer a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}
