* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 20px;
    background-color: whitesmoke;
    font-family: Arial, sans-serif;
}
#titlebar {
    background-color: darkgoldenrod;
    width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 10px;
    margin-bottom: 15px;
}
#navbar ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    overflow: hidden;
    background-color: dimgrey;
    border-radius: 10px;
}
#navbar li {
    float: left;
}
#navbar li.right {
    float: right;
}
#navbar li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
}
#navbar li a:hover,
#navbar li a.active {
    background-color: darkgoldenrod;
}
#image-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
#image-row img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid darkgoldenrod;
}