@font-face {
    font-family: "Darkwoman";
    src: local("Darkwoman"), url("fonts/Darkwoman.otf");
}

@font-face {
    font-family: "Arimo";
    src: local("Arimo"), url("fonts/Arimo/Arimo-VariableFont_wght.ttf");
}

header {
    background: #82BC00;
    text-align: center;
}

body {
    margin: 0;
}

.body-wrapper {
    padding: 20px;
}

.logo {
    margin: 20px;
}

.title {
    text-align: center;
    font-family: 'Darkwoman';
    font-style: normal;
    font-weight: 400;
    /* identical to box height */
    font-feature-settings: 'liga' off;

    /* Text (Light)/Heading */
    color: #192534;
}

.subtitle {
    text-align: center;
    font-family: 'Darkwoman';
    font-style: normal;
    font-weight: 400;
    /* identical to box height */
    font-feature-settings: 'liga' off;

    /* Text (Light)/Heading */
    color: #192534;
}

.message {
    /* Body Text/Regular --lumo-font-size-m */
    font-family: 'Arimo';
    font-style: normal;
    font-weight: 400;
    text-align: center;
    /* Text (Light)/Heading */
    color: #192534;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.errorcode {
    text-align: center;
    /* Headings/H1 --lumo-font-size-xxxl */
    font-family: 'Arimo';
    font-style: normal;
    font-weight: 700;
    /* Text (Light)/Heading */
    color: #192534;

    margin-bottom: 2rem;
    margin-top: 2rem;
}

.btn {
    width: 132px;
    height: 35px;
    /* Primary --lumo-primary-color --lumo-success-text-color */
    background: #82BC00;
    border-radius: 4px;
    color: #ffffff;
    border: 0px;
    font-weight: bold;
}

.btn:hover {
    background: #7CB300;
}

.button-wrapper {
    text-align: center;
}

.image {
    height: 200px;
}

.image-wrapper {
    text-align: center;
}

.important-message {
    font-weight: bold;
}

@media only screen and (min-width: 601px) {

    .title {
        font-size: 96px;
        line-height: 97px;
    }

    .subtitle {
        font-size: 96px;
        line-height: 97px;
    }

    .errorcode {
        font-size: 40px;
        line-height: 125.3%;
    }

    .message {
        font-size: 1rem;
        line-height: 161.1%;
    }

    .btn {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 600px) {

    .title,
    .subtitle {
        font-size: 50px;
    }

    .errorcode {
        font-size: 30px;
        line-height: 100.3%;
    }

    .message {
        font-size: 1rem;
        line-height: 151.1%;
    }

    .btn {
        font-size: 1rem;
    }
}