:root {
    --schott-blue: #0050FF;
    --blue-two: #062e62;
}

body {
    margin: 0;
}

.header {
    background-color: var(--blue-two);
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Inter, sans-serif;
    color: var(--blue-two);
}

.footer {
    background-color: var(--blue-two);
    color: white;;
}

.error-404 {
    margin-bottom: 1rem;
    line-height: .8;
    color: #fff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, .15);
    font-size: 44vw;
    font-weight: 700;

    @media (min-width: 1280px) {
        font-size: 22rem;
    }

    @media (min-width: 767px) {
        font-size: 18rem;
    }

    @media (max-width: 320px) {
        font-size: 10rem;
    }
}

.footer .container {
    color: white;
    font-size: 14px;
}

h1 {
    padding-bottom: 1rem;
}

a.btn,
button.btn {
    &.btn-primary {
        text-decoration: none;
        display: inline-block;
        color: white;
        background: var(--schott-blue);
        border: 1px solid var(--schott-blue);
        padding: 1rem;
        margin: 4px 0;

        &:hover {
            cursor: pointer;
            color: var(--schott-blue);
            background: white;
        / / border-color: var(--schott-blue);
        }
    }
}