﻿html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    color: #000;
    overflow-x: hidden;
}
h1{
    font-size: 3rem;
    font-weight: 500;
}

h3{
    font-size: 1.5rem;
    font-weight: 500;
}

.header-container{
    padding: 30px 40px;
}

.header-logo{
    max-height: 100px;
}

.content-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding:40px 60px;
    height: calc(100vh - 260px);
    line-height: 2;
}

.background-container{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
}


@media (max-width: 568px) {
    .header-container{
        padding: 30px 40px;
        text-align: center;
    }
    .content-container{
        padding: 10px 30px;
    }

}
