@font-face {
    font-family: 'encoded-sans';
    src: url("../fonts/encodesans-regular-webfont.woff") format("woff");
    font-weight: 500;
}

@font-face {
    font-family: 'encoded-sans';
    src: url("../fonts/encodesans-bold-webfont.woff") format("woff");
    font-weight: 700;
}

@font-face {
    font-family: 'encoded-sans';
    src: url("../fonts/encodesans-extrabold-webfont.woff") format("woff");
    font-weight: 900;
}

:root {
    --max-width: 1200px;
    --side-padding: 64px;
    --black-foreground: #4e7a87;
    --white-foreground: #ffffff;
    --detail-foreground: #e50092;
    --fonts: 'encoded-sans', sans-serif;
}

@media screen and (max-width: 576px) {
     :root {
        --side-padding: 32px;
    }
}

.btn {
    background-color: var(--detail-foreground);
    border: 0;
    padding: 18px 30px;
    color: var(--white-foreground);
    border-radius: 12px;
    font-family: var(--fonts);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 22px;
    cursor: pointer;
}