body {
    display: flex;
    flex-direction: column;
    padding: 0px 200px;
    justify-content: space-between;
    min-height: 100vh;
    margin: 0px;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid black;
    margin: 0px -200px 0px;
    padding: 32px 200px;
    font-family: "Perpetua", "Garamond", serif;
    background-color: white;
    /* uncomment this if I want the header to stick */
    /*position: sticky;
    top: 0;
    box-sizing: border-box;
    width: 100vw;
    */
}

#left-header {
    display: flex;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    width: 100px;
}

#right-header {
    width: 100px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

#left-header a,
#right-header a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    padding: 8px 16px;
    border-radius: 8px;
}

#right-header a:hover {
    background-color: #f1f1f1;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    background-color: #fafafa;
    right: 0;
    margin-top: 8px;
    border-radius: 8px;
    width: 200px;
}


#right-header .dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.dropdown:hover .dropdown-button {
    background-color: #fafafa;
}

#right-header .dropdown-content a {
    padding: 8px 16px;
}

h1 {
    padding: 0px;
    margin: 0px;
    font-weight: 100;
    font-size: 48px;
    font-variant-caps: petite-caps;;
}

h2 {
    margin-bottom: 0px;
    font-size: 30px;
}

#content {
    flex-grow: 1;
    padding: 64px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    background-color: #f0f0f0;
}

.photo {
    margin: auto;
    position: relative;
}

.hover-overlay {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(1,1,1,0), rgba(0,0,0,1));
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    padding: 8px;
}

.hover-overlay p {
    font-size: 16px;
    color: white;
    margin: 0;
    font-style: italic;
}

.hover-overlay.active {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

#footer {
    height: 32px;
    background-color: #ddd;
    margin: 0px -200px;
}