.button {
    background: var(--text-background-color-brown);
    color: var(--text-inverse-color);
    border: none;
    border-radius: 30px;
    font-size: 26px;
    font-weight: 500;
    padding: 0.8em 1.5em;
    margin: 0.8em 1.5em;
    cursor: pointer;
}

.button:hover {
    background: linear-gradient(0deg, #dbcd7069 0%, #6c5013c7 100%), url('../public/images/background-gold.jpeg');
    color: var(--text-inverse-color);
}

.title-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5em 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    font-size: 30px;
    font-weight: bold;
    font-family: var(--font-koulen);
    text-align: center;
    position: relative;
}

.title::after {
    content: '';
    width: 100%;
    background: var(--primary-color);
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.container {
    width: 100%;
}

.container-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.description-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: #000000af;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    font-size: 26px;
    color: var(--text-inverse-color);
    opacity: 0;
    transition: opacity 0.7s;
}

.description-overlay:hover,
.description-overlay-clicked {
    opacity: 1;
    transition: opacity 0.7s;
}

section[id] {
    scroll-margin-top: 70px;
}

@media only screen and (max-width: 768px) {
    body {
        padding: 60px 0 0 0;
    }
}

@media only screen and (max-width: 600px) {
    .button {
        font-size: 20px;
    }
}