
.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
}

.image-frame {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box {
    border: 5px solid black;
    padding: 5px;
    background-color: white;
    width: 30vw;
    height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box img {
    max-width: 100%;
    max-height: 100%;
}

.arrow-button {
    background-color: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    margin: 0 1rem;
}

.backstory {
    margin-top: 1rem;
    padding: 1rem;
    width: 30vw;
    border: 2px solid #ccc;
    background-color: #f9f9f9;
    font-size: 1rem;
}
.gallery {
    margin-left: auto;
    margin-right: auto;
    width:60%;
    height:60vh;
    background-color: transparent;
    margin-top: 5%;
    border: 1px solid white
}

@media only screen and (max-width: 600px) {
    .image-box {
        height: 25vh;
        width:60vw
    }
    .gallery {
        height: 50vh;
        width:75vw
    }

    .backstory {
        width:55vw;
        height:12vh
    }
    .arrow-button {
        background-color: transparent;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        margin: 0 0.2rem;
    }
    
}