body {
    background: #f8e396;
    margin: 0;
    font-family: 'Arial MT W01 Regular';
    -webkit-text-size-adjust: none;
}

img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.hearderText {
    color: #512C1E;
    font-size: 57px;
    font-family: arial;
    font-weight: normal;
    font-style: normal;
    padding-top: 175px;
}

.contentWrapper {
    background: url("../assets/Pappperr2.png") no-repeat;
    background-size: cover;
}

.headerImg img {
    position: fixed;
    z-index: -1;
}

.headerImg {
    min-height: 80vh;
}

.headerImg.mobile {
    display: none;
}

.desk-brk {
    display: block;
}

@media only screen and (max-width: 767px) {
    .hearderText {
        font-size: 30px;
        padding-top: 50px;
    }
    .headerImg {
        min-height: 50vh;
        display: none;
    }
    .headerImg.mobile {
        display: block;
    }
    .desk-brk {
        display: inline;
    }
}

@media only screen and (max-width: 767px) and (orientation: landscape) {
    .headerImg {
        min-height: 72vh;
        display: block;
    }
    .headerImg.mobile {
        display: none;
    }
}

@media only screen and (max-width: 1023px) and (min-width: 768px) {
    .headerImg {
        min-height: 70vh;
        display: none;
    }
    .headerImg.mobile {
        display: block;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .headerImg {
        min-height: 56vh;
    }
}