body {
    display: flex;
    position: relative;
    margin: 0;
    font-family: Arial, sans-serif;
    min-width: max-content;
    overflow-x: hidden;
}

#fullscreenBtn {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    white-space: nowrap;
    cursor: pointer;
    background-color: black;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
}

.title-bar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 40px;
    color: white;
    background-color: black;
    z-index: 8;
}

.restOfTitleBar {
    display: flex;
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    justify-content:space-between;
}

#menuBtn {
    font-size: 30px;
    cursor: pointer;
    text-wrap: nowrap;
}

#instructions {
    white-space: nowrap;
    margin-right: 20px;
}

.full-screen-image {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: black;
    z-index: 10;
}

.big-pic {
    max-width: 100vw;
    max-height: 100vh;
}

.album-section {
    position: fixed;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    color: white;
    background-color: black;
    transition: width 0.8s;
    padding-top: 60px;
    overflow-x: hidden;
    z-index: 9;
}

.album-section h3 {
    text-align: center;
    font-size: 20px;
    letter-spacing: 2px;
    text-wrap: nowrap;
}

.album-section a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: width 0.3s;
}

.album-section a:hover {
    color: #f1f1f1;
}

.album-section p {
    color: white;
    background-color:black;
    font-size: 18px;
    margin-left: 1em;
}

.album-section p:hover {
    font-weight: bold;
    cursor: pointer;
}

.album-section .close-button {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
}

.main-section {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    justify-content: flex-start;
    align-content: space-evenly;
    left: 20px;
    top: 42px;
    width: 95vw;
    gap: 10px;
}

.picture {
    display: block;
    margin-bottom: 1em;
    height: calc(90vh / 3.5);
    transition-duration: 0.5s;
    box-shadow: 5px 5px #CCCCCC;
}

.picture:hover {
    cursor: pointer;
    rotate: 5deg;
}