@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@font-face {
    font-family: Kankanyan;
    src: url(fonts/BraindYerevan.otf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.bg_img {
    background-image: url("img/bg.jpg");
    background-position: center;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.bg_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    opacity: 0.3;
}

.content {
    position: absolute;
    top: 10%;
    left: 20%;
    margin: 0 auto;
    width: 60%;
    text-align: center;
}

.content h1 {
    font-size: 13rem;
    font-weight: 100;
    font-family: Kankanyan, sans-serif;
    text-transform: uppercase;
    color: #fff;
    animation: fadeIn 2s ease-in-out 0s 1;
}

.content h1 span {
    color: #ed3c0d;
    animation: fadeIn 5s ease-in-out 0s 1;
}

.social {
    position: absolute;
    left: 50px;
    bottom: 50px;
}

.social i {
    color: #fff;
    font-weight: 100;
}

.social a {
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
}

.social a:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
}

#timer {
    width: 300px;
    display: flex;
    justify-content: space-around;
    color: #fff;
    padding-top: 1rem;
    margin: 0 auto;
    animation: fadeIn 5s ease-in-out 0s 1;
}

#timer>div {
    text-align: center;
    float: left;
    margin-right: 25px;
    font-size: 22px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}