/* Styling for gallery */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
}

.album {
    margin: 20px;
}

.album-section {
    margin: 20px;
    padding: 20px;
    background-color: rgb(245, 245, 245);
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.album-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-wrapper {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border: 10px solid rgb(245, 245, 245);
    border-radius: 20px;
}

.album-images img {
    height: 150%;
    cursor: pointer;
    transition: all ease-in-out 0.2s;
}

.album-images img:hover {
    transform: scale(1.05);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup img {
    max-width: 80%;
    max-height: 80%;
}

.popup-controls {
    margin: 10px;
    height: 50px;
    width: 50px;
    font-size: 16pt;
    border-radius: 0px;
    border: 10px solid rgb(21, 63, 50);
    background-color: rgb(21, 63, 50);
    box-shadow: 0px 0px 15px rgba(21, 63, 50, 0.5);
    color: white;
    box-sizing: border-box;
    transition: all ease-in-out 0.2s;
}

.popup-controls:hover {
    border: 5px solid rgb(21, 63, 50);
    background-color: white;
    box-shadow: 0px 0px 15px rgba(21, 63, 50, 0.9);
    color: rgb(21, 63, 50);
}

@media screen and (max-width:1023px) {
    .image-wrapper {
        width: 150px;
        height: 150px;
        overflow: hidden;
        border: 10px solid white;
    }
}