* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: calibri, sans-serif;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

header:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(34, 34, 34, 0.7);
}

/*----------HOME PAGE LOGO POSITIONING----------*/
nav {
    display: flex;
    padding: 3%;
    justify-content: center;
}

/*----------HOME PAGE LOGO SIZING----------*/
nav img {
    width: 175px;
}

/*----------CONTACT FOOTER----------*/

header .contact h3 {
    color: #FFF;
    font-size: 28px;
    padding-top: 20px;
    font-weight: 400;
}

header .content {
    position: relative;
    z-index: 1;
}

header .content h1 {
    color: #FFF;
    font-size: 36px;
    font-weight: 300;
}

@media screen and (min-width: 480px) {
    header .content h1 {
        font-size: 36px;
    }
}

@media screen and (min-width: 768px) {
    header .content h1 {
        font-size: 36px;
    }
}

@media screen and (min-width: 1024px) {
    header .content h1 {
        font-size: 36px;
    }
}

@media screen and (min-width: 1280px) {
    header .content h1 {
        font-size: 36px;
    }
}

header .content h2 {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0px;
}

@media screen and (min-width: 480px) {
    header .content h2 {
        font-size: 28px;
    }
}

@media screen and (min-width: 768px) {
    header .content h2 {
        font-size: 36px;
    }
}

@media screen and (min-width: 1024px) {
    header .content h2 {
        font-size: 38px;
    }
}

@media screen and (min-width: 1280px) {
    header .content h2 {
        font-size: 42px;
    }
}

header .content .countdown {
    color: rgb(255, 255, 255);
    font-size: 36px;
    font-weight: 400;
}

@media screen and (min-width: 480px) {
    header .content .countdown {
        font-size: 42px;
    }
}

@media screen and (min-width: 768px) {
    header .content .countdown {
        font-size: 56px;
    }
}

@media screen and (min-width: 1024px) {
    header .content .countdown {
        font-size: 72px;
    }
}

@media screen and (min-width: 1280px) {
    header .content .countdown {
        font-size: 72px;
    }
}

/*# sourceMappingURL=main.css.map */
