body {
    background-color: rgb(255, 248, 240);
}

#tabs {
    display: flex;
    background-color: blanchedalmond;
    height: 10vh;
    border-radius: 20px;
}

button {
    font-size: larger;
    font-weight: bold;
    border: none;
    background-color: beige;
    border-radius: 20px;
    margin: 1%;
    padding: 1%;
}

.images {
    height: 30vh;
    padding: 1%;
    margin: 2%;
    /* background-color: aliceblue; */
}

img {
    height: 100%;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(2);
}

#originalPhotos, #composites {
    /* display: flex; */
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    height: 90vh;
    display: none;
}
