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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-family: "Upheaval";

    a {
        display: flex;
        flex-direction: column;
        font-size: 76px;
        line-height: 0.7;
        text-decoration: none;
        color: inherit !important;
    }

    span {
        &:nth-child(2) {
            font-size: 96%;
        }

        &:nth-child(3) {
            font-size: 114%;
        }
    }
}

h2,
h3 {
    font-family: "Upheaval";
}

a {
    font-weight: 600;
    color: deeppink;
}

.container {
    max-width: 60rem;
    margin-inline: auto;
    padding-inline: 1rem;
}

header {
    margin-block: auto;
}

footer {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    flex: 0 1 auto;
    width: 100%;
    padding-block: 1rem;
    text-align: center;
    gap: 1rem;
}

small {
    font-size: 12px;
}

@media screen and (min-width: 768px) {
    footer {
        align-items: flex-start;
        flex-direction: row;
    }
}

.privacy-link {
    font-size: 12px;
}

.privacy {
    font-size: 18px;

    h2,
    h3,
    h4 {
        font-family: "Arial", sans-serif;
    }
}