nav {
    background-color: #000000;
}

nav ul  {
    display: flex;
    list-style-type: none;
}

nav li {
    width: 20%;
}

nav a {
    text-decoration: none;
    color: #ffffff;
}

main {
    display: flex;
}

article {
    width: 60%;
    margin: 1.5em 2.0202% 0 2.0202%;
}

article img {
    width: 100%;
    height: auto;
}

#galGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    align-content: stretch;
}

#galGrid img {
    border-width: 1px;
    border-color: #cccccc;
    box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
    max-width: 100%;
}

aside {
    width: 40%;
    padding: 2.0202%;
    max-width: 200px;
    min-height: 180px;
    background-color: #ffebc6;
}

footer {
    background-color: #ffc0cb;
}