/* VARIABLES */
:root {
    --color-primary: #000000;
}

/* TYPEFACES */
@font-face {
    font-family: 'Labil';
    src: url('../fonts/LabilGrotesk-Medium.woff2') format('woff2'),
        url('../fonts/LabilGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Labil';
    src: url('../fonts/LabilGrotesk-Bold.woff2') format('woff2'),
        url('../fonts/LabilGrotesk-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Labil';
    src: url('../fonts/LabilGrotesk-Regular.woff2') format('woff2'),
        url('../fonts/LabilGrotesk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* GENERAL */
body {
    font-family: 'Labil', system-ui, sans-serif;
    font-feature-settings: "calt" 0, "salt" 0, "ss01" 0, "ss02" 0;
    color: #FFF;
    min-height: 100vh;
    width: 100vw;
}

/* CUSTOM  */
.container {
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../img/bg-fall.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 50px;
}

.text__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn__container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn__container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 10px;
    transform: translateY(-50%);
    z-index: 0;
    background-color: #FFF;
}

.btn {
    color: #000;
    background-color: #FFF;
    padding: 8px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 42px;
    z-index: 1;
    filter: drop-shadow(0 0 10px #000);
}

.btn:hover {
    background-color: #000;
    color: #FFF;
}

.text__container p {
    font-size: 24px;
    text-shadow: 0 0 10px #000;
    text-align: center;
    max-width: 20ch;
}

@media (max-width: 990px) {
    .btn {
        font-size: 32px;
    }

    .text__container p {
        font-size: 20px;
    }
}