body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-color: white;
}

header {
    background-color: lightgray;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 20px 20px 0 20px;
}

nav {
    display: inline-block;
    width: 80%;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    gap: 50px;
}

nav ul li:last-child {
    padding-right: 50px;
}

main {
    background-color: lemonchiffon;
    font-size: 18px;
    min-height: 50vh;
}

footer {
    background-color: lightcyan;
}

/* li {
    display: inline-block;
    width: 100px;
} */

h1 {
    text-align: center;
    font-family: 'Georgia', serif;
    color: darkblue;
}

p {
    line-height: 1.5;
    text-align: justify;
}

footer p {
    text-align: center;
}

header img {
    width: 10%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 40%);
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.grid img {
    width: 100%;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 700px;
}

#main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}