@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #607274;
    --secondary-color: #B2A59B;
}

body > .container {
    margin-top: 20px;
}

* {
    font-family: 'Barlow Semi Condensed', sans-serif;
    box-sizing: border-box;
    color: var(--primary-color);
    cursor: default;
    user-select: none;
}

nav {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

li.nav-item:first-child {
    margin-left: var(--ml);
}

button,
button span {
    cursor: pointer;
}

.button {
    transition: .3s;
}

.button:hover,
.button:active {
    background-color: #948980;
}

.dropdown-item:hover:not(:active) {
    background-color: rgba(184, 184, 184, 0.548);
}

a {
    text-decoration: none;
    cursor: pointer;
}

p {
    margin: 0 !important;
}

.fw700 {
    font-weight: 700;
}

.fw500 {
    font-weight: 500;
}

.fw300 {
    font-weight: 300;
}

.subtitle {
    font-size: clamp(0.8rem, 2vw, 1.5rem);
}

footer {
    background-color: var(--secondary-color);
    width: 100%;
    height: 50px;
    margin-top: 15% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    :root {
        --ml: 0;
    }

    * {
        scroll-padding: 29vh;
    }
}

@media (min-width: 992px) {
    :root {
        --ml: 4vw;
    }

    * {
        scroll-padding: 50px;
    }
}