@charset "utf-8";
/* RESET */
* {
margin: 0px;
padding: 0px;
outline: 0px none transparent;
border: 0px none transparent;
background: transparent none repeat scroll 0% 0%;
font-weight: normal;
font-style: normal;
font-size: 100%;
}
*, *::after, *::before {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat Bold';
    font-style: normal;
    font-weight: 600;
    src: local('Montserrat Bold'), local('Montserrat Bold'), url(../../web/fonts/montserrat-semi-bold.woff2) format('woff2');
}

a {
-webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
-webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
text-decoration: none;
}
header{
    width: 60%;
    position: absolute;
    left: 0;
    top: 0;
}
section{
    width: 60%;
    height: 100vh;
    float: left;
    position: relative;
    padding: 30vh 20vh 50px 10vh;
}
section h1{
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 2em;
    margin-bottom: 40px;
}
section h1:after {
    position: absolute;
    content: "";
    display: inline-block;
    height: 1.3em;
    width: 3px;
    margin-left: 5px;
    background-color: #FF5252;
    -webkit-animation: flash 0.6s none infinite alternate;
    animation: flash 0.6s none infinite alternate;
}
@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
section h2{
    font-family: Courier New,Courier,monospace;
    line-height: 140%;
}
section + section{
    width: 40%;
    height: 100vh;
    float: left;
    background-color: #ff5252;
}
article{
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
article a img{
    height: 20px;
    margin: 10px;
}
footer{
    width: 40%;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 30px;
    text-align: right;
    color: #fff;
    font-family: Courier New,Courier,monospace;
    line-height: 140%;
}
footer a{
    font-family: 'Montserrat Bold',sans-serif;
    font-size: 16px;
    color: #222;
    text-decoration: underline;
}
.logo{
    margin: 40px;
    max-width: 280px;
}


@media only screen and (max-width: 768px) {
    section {
        width: 100%;
        height: 60vh;
        padding: 22vh 10vh 50px 10vh;
    }
    section + section {
        width: 100%;
        height: 40vh;
    }
    header, footer {
        width: 100%;
    }
}
@media all and (max-width: 736px){
    .logo {
        margin: 20px 40px;
        max-width: 190px;
    }
    section{
        padding: 18vh 3vh 50px 5vh;
    }
    section {
        height: 75vh;
    }
    section + section {
        height: 25vh;
    }
    footer a{
        font-size: 18px;
        margin: 5px o;
    }
}