@import "../css/normalize.css";
body {
    color: #FFF;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}
.main-bg-container {
    background: #000;
    padding: 30px 0;
    position: relative;
    text-align: center;
    height: 100vh;
    width: 100%;
}
.inner-page-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
body p{
    margin: 0;
}
a{
    color: #FFF;
    text-decoration: none;
    transition: all .5s;
}
a:hover, a:active, a:focus{
    color: #896d4a;
}
img {
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
}
strong{
    font-weight: 900;
}

.logo-wrapper {
    padding: 25px 0 30px;
}
.content-wrapper h1 {
    font-weight: 300;
}
.inner-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
    width: 50%;
    margin: 40px auto 70px;
}
.left-content, .right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%
}
.right-content {
    background: #896d4a;
}
.content-wrapper a {
    display: inline-block;
    margin: 50px 0 35px;
    border: 2px solid #FFF;
    background: #896d4a;
    padding: 10px 60px;
    border-radius: 5px;
}
.content-wrapper a:hover {
    background: transparent;
    color: #FFF;
}
.footer-wrapper p {
    margin-bottom: 10px;
}
.footer-wrapper p span {
    color: #896d4a;
    font-weight: 900;
}
.footer-wrapper p a {
    font-weight: 900;
}

@media screen and (max-width: 1400px){
    .inner-content-wrapper{
        width: 60%;
    }
}
@media screen and (max-width: 1200px){
    .inner-content-wrapper{
        width: 70%;
    }
}
@media screen and (max-width: 993px){
    .inner-content-wrapper{
        width: 80%;
    }
}
@media screen and (max-width: 900px){
    .inner-content-wrapper{
        width: 90%;
    }
}
@media screen and (max-width: 767px){
    .main-bg-container {
        height: auto; 
    }
    .inner-page-container {
        position: static;
        transform: none;
    }
    .inner-content-wrapper {
        display: inline-block;
    }
    .left-content, .right-content {
        width: 60%;
        margin: 0 auto;
    }
    .right-content {
        padding: 50px 0;
    }
    .content-wrapper h1 {
        font-size: 27px;
    }
}
@media screen and (max-width: 650px){
    .left-content, .right-content {
        width: 70%;
    }
}
@media screen and (max-width: 580px){
    .left-content, .right-content {
        width: 80%;
    }
}
@media screen and (max-width: 500px){
    .right-content img {
        width: 80%;
    }
    .content-wrapper a {
        padding: 10px 25px;
    }
    .content-wrapper h1 {
        font-size: 24px;
    }
    body {
        font-size: 14px;
    }
}