@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,600|Roboto+Mono:300,400");
* {
    box-sizing: border-box;
}
html {
    background: linear-gradient(rgba(34, 41, 65, 0.45), rgba(46, 55, 86, 0.45)),
        url("../img/front-bg.png");
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}
.hero-head header {
    height: 75px;
}
.hero-head header .navbar-item img {
    height: auto;
    max-height: 145px;
    filter: brightness(0) invert(1);
    width: auto;
}
.hero-head header .navbar-item .is-primary {
    border-color: white !important;
    color: white !important;
}

.navbar-brand {
    text-align: center;
}

.hero-head header .navbar-item .is-primary:hover {
    background: rgba(0, 0, 0, 0) !important;
    border-color: white !important;
    color: white !important;
    transition: all 0.2s ease-in-out;
}
.hero-body .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 300 !important;
    font-size: 4rem !important;
    letter-spacing: 15px;
    color: #fff !important;
    text-align: center;
}
.hero-body .subtitle .countdown {
    color: #fff;
    font-family: "Roboto Mono", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    padding-top: 15px;
    letter-spacing: 2px;
    font-size: 2.5rem;
}
.hero-foot {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
.hero-foot ul li {
    display: inline;
    padding: 25px;
}
.hero-foot a {
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
}
/* -------------------- */
/* -- Animations CSS -- */
/* -------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        opacity: 1 \9;
    }
    to {
        opacity: 1;
    }
}
.fade {
    opacity: 0;
    animation: fadeIn ease-in 1;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}
.fade.fadeOne {
    animation-delay: 0.2s;
}
.fade.fadeTwo {
    animation-delay: 0.8s;
}
.fade.fadeThree {
    animation-delay: 1.2s;
}
.fade.fadeThree span {
    font-size: 0.8rem;
}
