html, body {
    height: 100%;
    margin: 0;
    background: #044D57;
    color: #FFFFFF;
}

body {
    display: flex;
    justify-content: center;
    background-image: url("../img/coin.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: right -50px bottom -50px;
    background-size: contain;
}

.container-fluid {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.content-center {
    flex: 1;
    align-items: center;
    justify-content: center;
}

h1.heading {
    font-family: 'Haas Grotesk Display Web', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    font-feature-settings: 'salt' on, 'calt' off;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
}

ul li {
    font-family: 'Haas Grotesk Display Web', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
}

ul li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 34px;
    height: 34px;
    background-image: url('../img/dot.svg');
    background-size: cover;
    margin: 0 10px;
}

.description {
    font-family: 'Haas Grotesk Display Web', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #7FE5DC;
}

.description404 {
    font-family: 'Haas Grotesk Display Web', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    color: #FFFFFF;
}

.footer, .footer-content {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
}

.footer-left, .footer-right {
    margin: 0;
    padding: 0;
}

.footer-content {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.footer-left {
    align-items: start;
}

.footer-right p {
    display: block;
    width: 100%;
    text-align: end;
}

.btn-primary {
    font-family: 'Haas Grotesk Display Web', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 500;
    padding: 12px 64px;
    font-size: 16px;
    background: #D6FFF4;
    color: #044D57;
}

.btn-primary:hover {
    background: #044D57;
    border: 1px solid #7FE5DC;
}

.btn-primary:active {
    background: #D6FFF4 !important;
    border: 1px solid #044D57 !important;
    color: #044D57 !important;
}

.copyright {
    display: flex;
    align-content: flex-start;
    margin: 16px 0 0 0;
}

.privacy-link {
    margin: 0 0 0 0;
}

.privacy-link a {
    margin-left: 10px;
}

.footer-right-bottom {
    margin-top: 16px;
    text-align: end;
}

.footer-right-bottom p {
    display: inline;
}

.footer-right-bottom p {
    white-space: nowrap;
}

.footer-right-bottom .description {
    font-size: 12px;
}

/* Small screens */
@media (min-width: 375px) and (max-width: 767px) {
    body {
        padding-top: 32px;
        background-position: right bottom;
    }

    h1.heading {
        margin-top: 12px;
        font-size: 44px;
        max-width: 312px;
    }

    .container-fluid {
        margin: 0 31px;
    }

    ul {
        margin: 48px 0 0 0;
        font-size: 20px;
    }

    .footer {
        margin-bottom: 32px;
    }
}

/* Medium screens */
@media (min-width: 768px) and (max-width: 1439px) {
    body {
        padding-top: 40px;
    }

    h1.heading {
        margin-top: 16px;
        font-size: 64px;
        max-width: 690px;
    }

    .container-fluid {
        margin: 0 38px;
    }

    ul {
        margin: 80px 0 0 0;
        font-size: 24px;
    }

    .footer {
        margin-bottom: 40px;
    }
}

/* Large screens */
@media (min-width: 1440px) and (max-width: 1919px) {
    body {
        padding-top: 56px;
    }

    h1.heading {
        margin-top: 20px;
        font-size: 100px;
        max-width: 994px;
    }

    .container-fluid {
        margin: 0 52px;
    }

    ul {
        margin: 138px 0 0 0;
        font-size: 28px;
    }

    .footer {
        margin-bottom: 56px;
    }
}

/* Extra large screens */
@media (min-width: 1920px) {
    body {
        padding-top: 56px;
    }

    h1.heading {
        margin-top: 20px;
        font-size: 100px;
        max-width: 994px;
    }

    .container-fluid {
        margin: 0 160px;
    }

    ul {
        margin: 158px 0 0 0;
        font-size: 28px;
    }

    .footer {
        margin-bottom: 56px;
    }
}