* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Inter", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 150%;
    text-rendering: optimizeLegibility;
}

#container {
    position: relative;
    width: 100%;
    min-height: 75vh;
    padding: 0;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    background-color: #0d2860;
    background-image: url(https://s3.amazonaws.com/media.venngage.com/img/bg-world-404.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;

}

#errorContainer {
    width: auto;
}

.row {
    text-align: center;
}

.title {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 50px auto;
}

.home-btn {
    display: inline-block;
    padding: 10px 12px 10px 12px;
    border-radius: 6px;
    gap: 8px;
    background: #0073E6;
    color: white;
    text-decoration: none;
    font-size: 16px;
    min-width: 162px;
    height: 42px;
}

.home-btn:hover, .home-btn:focus {
    background: #0052a3;
    border-color: transparent;
    color: white;
    text-decoration: none;
}

@media (max-width: 767px) {
    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
        margin: 20px auto;
    }

    .row {
        text-align: left;
    }

    .home-btn {
        text-align: center;
    }

    #container {
        align-items: flex-start;
        padding: 6em 3em;
        justify-content: flex-start;
        background-size: contain;
        min-height: 36vh;
    }
}