@import url('https://fonts.googleapis.com/css?family=Cairo');
@import url('https://fonts.googleapis.com/css?family=Oswald');
html, body{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Cairo', sensrif;
}
.intro{
    height: 100%;
    width: 100%;
    float: left;
    margin: auto;
    background: url(img/bg1.jpg);
    opacity: 0.9;
    display: table;
    top: 0;
    background-size: cover;
}
.intro .nav{
    width: 7%;
    min-width: 40px;
    height: 100%;
    background: url(img/side.png) repeat-y;
    background-size: 100%;
    display: table-cell;
    opacity: 0.6;
}
.intro .inner{
    display: table-cell;
    vertical-align: middle;
    width: 86%;
    max-width: none;
}
.content{
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.content h1{
    color: #ffffff;
    padding: 2px;
    font-size: 18px;
    background-color: #152a46;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    margin: 0 5px;
}
.content h2{
    font-family: 'Oswald', sensrif;
    padding: 2px;
    font-size: 18px;
    color: #152a46;
    background-color: #ffffff;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    margin: 3px 5px 0 5px;
}
.content .button{
    width: 100%;
    margin-top: 15px;
}
.nav .logo{
    width: 100%;
    height: auto;
}
.btn{
    border-radius: 7px;
    color: #152a46;
    font-size: 18px;
    padding: 2px 40px;
    border: solid #152a46 3px;
    text-decoration: none;
    margin-left: 10px;
    background-color: #f0f6ff;
    opacity: 0.6;
}
.btn:hover{
    opacity: 0.9;
    border: solid #0b1b31 3px;
}
@media screen and (max-width: 768px){
    .btn{
        padding: 2px 20px;
    }
    .content h1{
        font-size: 17px;
    }
    .content h2{
        font-size: 16px;
    }
}
@media screen and (max-width: 600px){
    .content h1{
        font-size: 16px;
    }
    .content h2{
        font-size: 15px;
    }
}