* {
    box-sizing: border-box;
}
html {
    height: 100% !important;
}
body {
    background: url("../images/main-img.jpg") no-repeat center center;
    background-size: cover;
    font-family: '1942_report1942_report';
    font-size: 30px;
    line-height: 34px;
    color: #fff;
    position: relative;
    margin: 0;
    padding: 0;

    flex-direction: column !important;
    height: 100% !important;
    display: flex !important;
}
body:before {
    background-color: rgba(0, 0, 0, 0.2);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;

}
p {
    margin: 0;
    padding: 0 0 10px;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 0;
}
li {
    list-style: none;
    display: inline-block;
}
li a {
    display: block;
    line-height: 0;
}
li a img {
    transition: 0.3s;
}
li a:hover img {
    opacity: 0.7;
}
.wrapper {
    text-align: center;
    width: 100%;
    max-width: 980px;
    margin: auto;
    z-index: 99;
    padding: 20px;
}

h1 {
    font-size: 80px;
    color: #fff;
    line-height: normal;
    margin: 0 0 50px;
}

h3 {
    font-size: 50px;
    line-height: normal;
    margin: 40px 0 40px;
}
footer {
    text-align: center;
    font-size: 15px;
    color: #fff;
    width: 100%;
    z-index: 99;
    position: relative;
    padding-bottom: 10px;

    margin-top: auto !important;
}

/*md applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) { 
    body {
        font-size: 22px;
    }
    h1 {
        font-size: 56px;
    }
}

/*sm applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    body {
        font-size: 18px;
        line-height: normal;
    }
    .wrapper {
        padding: 15px;
    }
    h1 {
        font-size: 32px;
        line-height: normal;
    }
    h3 {
        font-size: 30px;
    }
}



/*lg applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {  }
