* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.background {
    background-image: url("jsb-landing-cover.jpg");
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.header {
    position: absolute;
    top: 0;
    background-color: #0E1E12;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about {
    color: #E4EFE7;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px;
    opacity: 0.7;
}

.mainText {
    color: #FFF;
    font-family: Unna;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 5.4px;
    text-transform: uppercase;
}

.contact {
    width: 200px;
    height: 40px;
    background-color: #B44D36;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactText {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;
}



.contentWrap {
    position: absolute;
    top: 40%;
    left: 15%;
}



@media screen and (max-width: 768px) {
    .background {
        background-image: url("jsb-landing-cover-mobile.jpg");
        height: 100vh;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .contentWrap {
        position: absolute;
        top: 120px;
        left: 5%;
        max-width: 90%;
        padding: 75px 0;
    }

    .mainText {
        letter-spacing: 1px;
        text-align: center;
        line-height: 130%;
    }

    .contact {
        margin: auto;
    }

    .about {
        text-align: center;
    }
}