/* Fonts */
@font-face {
    font-family: 'SF Pro Display';
    src: url('./fonts/SFProDisplay-Medium.eot');
    src: local('SF Pro Display Medium'), local('SFProDisplay-Medium'),
    url('./fonts/SFProDisplay-Medium.eot?#iefix') format('embedded-opentype'),
    url('./fonts/SFProDisplay-Medium.woff2') format('woff2'),
    url('./fonts/SFProDisplay-Medium.woff') format('woff'),
    url('./fonts/SFProDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('./fonts/SFProDisplay-Bold.eot');
    src: local('SF Pro Display Bold'), local('SFProDisplay-Bold'),
    url('./fonts/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'),
    url('./fonts/SFProDisplay-Bold.woff2') format('woff2'),
    url('./fonts/SFProDisplay-Bold.woff') format('woff'),
    url('./fonts/SFProDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Reset */
* {
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Styles */
body, html {
    margin: 0;
}

body {
    background-color: #121212;
    font-family: 'SF Pro Display', 'sans-serif';
    font-size: 17px;
    font-weight: 500;
    color: #FFFFFF;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    min-height: 100vh;
    padding: 80px 0;
}

.content__title {
    margin: 50px 0 4px;

    font-size: 28px;
    line-height: 33px;
    letter-spacing: -0.1px;
}

.content__description {
    margin: 0 0 50px;

    font-size: 17px;
    line-height: 20px;
    letter-spacing: -0.1px;
    opacity: 0.5;
}


@media (max-width: 768px) {
    .content {
        padding: 40px 0;
    }

    .content__image img,
    .content__link img {
        max-width: 120px;
    }

    .content__title {
        margin: 25px 0 4px;
        font-size: 22px;
    }

    .content__description {
        margin: 0 0 25px;
        font-size: 14px;
    }

}
