.gallery-container {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.header-container {
    display: flex;
    height: fit-content;
    column-gap: 10px;
}

.tab-container {
    display: flex;
    width: 50%;
    flex-direction: column;
    margin-top: 20px;
    justify-content: space-between;
    text-align: center;
}

.tab {
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.75), inset 4px 4px 10px rgba(97, 94, 70, 0.1), 0 0 1px black;
    outline: 1px solid rgba(196, 196, 196, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    height: fit-content;
    width: 100%;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.75), inset 4px 4px 20px rgba(179, 192, 239, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    margin-top: 20px;
    padding: 10px;
}

.gallery-column div img {
    height: auto;
    width: 100%;
    filter: var(--fil);
}

.gallery-title {
    display: flex;
    height: 120px;
    width: 800px;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.75), inset 4px 4px 10px rgba(97, 94, 70, 0.1), 0 0 1px black;
    outline: 1px solid rgba(196, 196, 196, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    justify-content: space-around;
}

h1 {
    text-shadow: 0 0 1px black, 0 1px 1px rgb(131, 131, 131);
}

.tab a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-shadow: 0 0 1px black;
}

.tab a:hover {
    color: black;
    text-shadow: 0 0 3px black;
}

.gallery-title div img {
    height: 45%;
    float: right;
    filter: brightness(99%);
}

.gallery-section-title {
    display: flex;
    height: 40px;
    width: 100%;
    margin-top: 40px;
    background-color: #e73a27;
    text-shadow: 0 0 3px #f2f7ef;
    box-shadow: inset 0 0 15px black;
    border-radius: 16px;
    justify-content: center;
    filter: var(--fil);
}

.gallery-section-title div {
    font-size: 24px;
    font-family: 'JosefinSans';
    color: #f2f7ef;
    font-weight: 700;
    text-shadow: 0 0 3px #f2f7ef;
    align-content: center;
}

@media screen and (max-width: 1220px) {
    .gallery-container {
        gap: 5px;
    }
    .gallery-title {
        display: flex;
        height: auto;
        width: 100%;
        order: 2;
    }
    .gallery-title div img {
        width: 100%;
        height: auto;
    }
    .header-container {
        flex-direction: column;
    }
    .tab-container {
        flex-direction: row;
        width: 100%;
        column-gap: 5px;
    }
    .tab {
        width: 50%;
    }
    .tab-container .tab a h2 {
        font-size: 12px;
        font-weight: 400;
    }

}