body {
    font-family: "Open Sans", sans-serif;
    color: #e9843e;
    background-image: url('../img/fl.png');
    background-color: white;
}

body::before {
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media (min-width: 1024px) {}

a {
    color: #ce0079;
}

a:hover {
    color: #82014c;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    text-align: center;
}

#main {
    position: relative;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    display: none;
}

.back-to-top i {
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 40px;
    height: 40px;
    background: #e9843e;
    color: #fff;
    border-radius: 25%;
    transition: all 0.4s;
    display: flex;
    cursor: pointer;
}

.back-to-top i:hover {
    background: #b45d20;
}

.fade-in {
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#header h1 {
    margin: 0 0 10px 0;
    font-size: 10vh;
    font-weight: 700;
    color: #1d314e;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

#header h2 {
    color: #1d314e;
    margin-bottom: 40px;
    font-size: 3vh;
    font-weight: 700;
}

#header .countdown {
    margin-bottom: 80px;
    width: 100%;
}

#header .countdown div {
    text-align: center;
    margin: 10px;
    width: 100px;
    padding: 15px 0;
    background: #e9853e3a;
    border: 1px solid #e9843e;
    border-bottom: 15px solid #1d314e;
    border-radius: 10%;
}

#header .countdown div h3 {
    font-weight: 700;
    font-size: 44px;
    color: #1d314e;
    margin-bottom: 15px;
}

#header .countdown div h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d314e;
}

@media (max-width: 992px) {
    #header {
        height: 100vh;
    }
    #header .countdown div {
        padding: 10px 0;
        margin: 5px 4px;
    }
    #header .countdown div h3 {
        font-size: 40px;
    }
    #header h1 {
        font-size: 35px;
    }
    #header .countdown div h4 {
        font-size: 15px;
        font-weight: 600;
    }
    #header img {
        margin-top: 30px;
        width: 20vh;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #1d314e;
    color: white;
    font-size: 15px;
    bottom: 0%;
    height: 10vh;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

#footer .copyright {
    text-align: center;
    padding-top: 25px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: white;
}

#footer .credits a {
    color: #d62569;
}

@media (max-width: 992px) {
    #footer {
        font-size: 1.7vh;
    }
}