/*css for countdown*/
/* by Douglas coulsey*/

*{
    box-sizing: border-box;
}

body{
    background-image: url("../img/red-christmas-background-sparkling-trees-rjs4z8p20pz5v1zl.jpg");
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* nav bar */
.topNav {
    overflow: hidden;
    background-color: #6b6464;
    margin-bottom: 35px;
    width: 100%;
    text-align: center;
}
.topNav a:first-child{
    margin-left: 35%;
}


.topNav a{
    float: left;
    display: block;
    color: #b3acac;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 19px;

}

.topNav a:hover{
    background-color: blue;
    color: white;
}

.topNav .icon {
    display: none;
}

.topNav a.active{
    background-color: rgb(27, 27, 75);
    color: aliceblue;
}

/*media query to make nav bar vanish*/
@media screen and (max-width: 600px){
    .topNav a:not(:first-child){
        display: none;
    }
    .topNav a.icon{
        margin-left: 0;
        float: right;
        display: block;
    }
    .topNav.responsive{
        position: relative;
    }
    .topNav.responsive .icon{
        position: absolute;
        right: 0;
        left: 0;
    }
    .topNav.responsive a{
        float: none;
        display: block;
        text-align: left;
    }
}

/* END nav */
h1{
    font-weight: normal;
    font-size: 60px;
    margin-top: 10px;
    color:rgb(235, 145, 145);
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    font-style: normal;
}

.big-text{
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    font-style: normal;
    -webkit-text-stroke: 1px rgb(233, 161, 161);
    filter: drop-shadow(1px,1px,1px);
    font-size: 35px;
    padding-top: 10px;
    padding-right: 5px;
}
.countdown-el{
    text-align: center;
    color: rgb(192, 180, 180);
    padding-top: 3px;
    font-size: 20px;
    padding-right: 5px;
}