@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Barlow+Condensed:400,400i,600i,700');

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

.comingsoon {
    font-family: 'Barlow Condensed', sans-serif;
    background-color: #000;
    width: 100vw;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
h1,p {
    animation: fadeIn 4s ease 0s 1 normal;
    -webkit-animation: fadeIn 4s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
h1 {
    font-weight: 600;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 60px;
    letter-spacing: 10px;
    line-height: 80px;
}
p {
    font-style: italic;
    letter-spacing: 2px
}