/* GIFTS PAGE */

#gift-section {
    background: url(./assets/bg-garland.png) no-repeat center top;
    background-size: contain;
    padding: 60px 8px;
}

#gift-container {
    padding: 0px;
    gap: 20px;
    width: 90%;
}

h1 {
    font-family: 'Montserrat';
    font-size: 32px;
    letter-spacing: 0.18em;
    width: 426px;
}

#tabs {
    justify-content: center;
    padding: 0px;
    gap: 8px;
    height: 40px;
}

#tabs a {
    padding: 12px 20px;
    height: 40px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 0.05em;
}

#tabs a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#tabs a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* MEDIA SCREENS */

@media screen and (max-width: 500px) {
    #tabs a {
        padding: 12px 5px;
        font-size: 11px;
    }
}

@media screen and (max-width: 380px) {
    h1 {
        font-size: 22px;
        width: auto;
    }

    #tabs a {
        padding: 12px 0px;
        height: 20px;
        font-size: 10px;
    }
}