@font-face {
    font-family: "theuntamed_09";
    src: url("fonts/THEUNTAMED009-Regular.woff") format("woff");
    src: url("fonts/THEUNTAMED009-Regular.woff2") format("woff2");
    font-display: swap;
}
/* Primary Colors */
:root {
    --primary: #1e1e1e;
    --secondary: #ffffff;
}
* {
    margin: 0;
    box-sizing: border-box;
    color: var(--secondary);
    font-family: "theuntamed_09", sans-serif;
}
a {
    text-decoration: none;
    transition: 0.5s;
}
a:hover {
    opacity: 0.5;
}
.fs-16 {
    font-size: 1rem;
    line-height: 1.5;
}
body {
    background: var(--secondary);
}
header {
    min-height: 72px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    position: relative;
}
.logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: fit-content;
    height: fit-content;
}
.logo:hover {
    opacity: 1;
}

.main-block {
    background-size: cover !important;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-block__content {
    max-width: 1080px;
}
.vh-100 {
    min-height: 100vh;
}
.fs-32 {
    font-size: 2rem;
    line-height: 1.3;
}
.fs-96 {
    font-size: 96px;
}
.africa {
    text-align: center;
    padding-top: 32px;
}
.africa-text {
    color: #1e1e1e;
}

.earnings {
    height: 100vh;
    text-align: center;
    background-size: cover !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-block__title {
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 2rem;
    text-align: center;
}
.main-block__text {
    margin-bottom: 2rem;
    text-align: center;
}

footer {
    padding: 2.5rem 2rem;
}
.footer__text {
    color: var(--primary);
    text-align: center;
    text-transform: uppercase;
    max-width: 420px;
    margin: auto;
}
.footer__text a {
    color: var(--primary);
    text-transform: uppercase;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .language-switcher {
        max-width: 210px;
    }
    .language-switcher span:nth-child(4) {
        display: none;
    }
}
@media (max-width: 767px) {
    .fs-96 {
        font-size: 32px;
    }
}
@media (max-width: 576px) {
    header {
        flex-direction: column;
        padding: 0 0 2rem;
        background: var(--secondary);
    }
    header * {
        color: var(--primary);
    }
    .language-switcher {
        padding: 1rem 2rem 2rem;
        max-width: 270px;
        text-align: center;
    }
    .logo {
        position: static;
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 1rem 2rem;
        background-color: var(--primary);
    }
    .fs-32 {
        font-size: 1.5rem;
    }
    .header__btn {
        padding: 2rem;
        border: 1px solid var(--primary);
        text-align: center;
        width: calc(100% - 4rem);
        margin: auto;
    }
}
