*{
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    font-family: 'Oswald', sans-serif;
}

body{
    background-color: black;
    color: white;
}



body,html {
    margin:0 auto;
    padding:0;
    width: 100vw;
  }

/* #headerWrapperDiv{
    width: 100%;

} */

#header5SpotDiv{
    width: 100vw;
    background-image: url("../images/lights.jpg");
    background-color: black;
    background-repeat: no-repeat;
    background-size: 100% 100%; 
    text-align: center;
    height: 100px;
    display:flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    margin: 0 auto;
}

#main_title{
    text-decoration: none;
    color:  white;
    font-family: MyFont;
    background-color: rgba(0, 0, 0, .4);
    /* padding: 10%; */
}


@font-face {
	font-family: MyFont;
	src: url("../fonts/ATOMICCLOCKRADIO.TTF")
}

@font-face {
	font-family: clockFont;
	src: url("../fonts/14\ Segment\ LED\ Regular.ttf");
}

#timerDiv{
    background-image: linear-gradient(black, red, black);
    height: 60px;
    text-align: center;
}

.header-text{
    color: white;
    /* background-image: linear-gradient(to bottom, black, red); */
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    margin: 0;
    top: 20px;
    text-align: center;
    font-family: MyFont;
}

.header-text > span{
    font-family: MyFont;
}

#timer{
    /* font-family: clockFont; */
    font-family: MyFont;
    font: white;
    /* font-size: 20px; */
}


.nav{
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    transition: all 0.1s;
}
#active:checked ~ .nav{
    right: 0;
}
.menu-btn{
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 35px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.1s ease-in;
}
.menu-btn span,
.menu-btn:before,
.menu-btn:after{
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 30%;
    width: 60%;
    border-bottom: 4px solid #fff;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu-btn:before{
    transform: translateY(-8px);
}
.menu-btn:after{
    transform: translateY(8px);
}

.close {
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: all 0.1s;
    transition: background .1s;
}

#active:checked + #content{
    right: -100%;
}

/*closing animation*/
#active:checked + .menu-btn span {
    transform: scaleX(0);
}
#active:checked + .menu-btn:before {
    transform: rotate(45deg);
    border-color: #fff;
}
#active:checked + .menu-btn:after {
    transform: rotate(-45deg);
    border-color: #fff;
}
.nav ul{
    position: absolute;
    top: 60%;
    left:50%;
    height: 90%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
}
.nav ul li{
    height: 10%;
    margin: 15px 0;
}
.nav ul li a{
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    padding: 5px 30px;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    line-height: 50px;
    margin: 5px 30px;
    opacity: 0;
    transition: all 0.1s ease-in;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.nav ul li a:after{
    position: absolute;
    content: "";
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50px;
    transform: scaleY(0);
    z-index: -1;
    transition: transform 0.1s ease-in;
}
.nav ul li a:hover:after{
    transform: scaleY(1);
}
.nav ul li a:hover{
    color: red;
    font-weight: bold;

}
input[type="checkbox"]{
    display: none;
}
#content{
    margin: 0;
    text-align: center;
    width: 100%;
    /* z-index: -1; */
    position: relative;
}

#active:checked ~ #content{
    display: none;
    z-index: -1;
    position: relative;
}

#active:checked ~ #content > div{
    display: none;
}

#active:checked ~ .nav ul li a{
    opacity: 1;
}
.nav ul li a{
    transition: opacity 1.2s transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(100px);
}
#active:checked ~ .nav ul li a{
    /* transform: none; */
    transition-timing-function: ease, cubic-bezier(.1,1.3,.3,1);
    transition-delay: .1s;
    transform: translateX(-100px);
}

.left_div > a:after{
    position: absolute;
    content: "";
    
    /* width: 100%;
    height: 100%;
    left: 0;
    top: 0; */
    border-radius: 50px;
    transform: scaleY(0);
    /* z-index: -1; */
    
}

.left_div > a:hover, .right_div > a:hover{
    color: red;
    font-weight: bold;
    background: #fff;
    border-radius: 50px;
    transform: scale(2);
    /* transform: scaleY(0); */
    transition: all .5s ease-in-out;
}

@media only screen and (min-width: 800px) {
    #left_nav{
        color: white;
        display: flex;
        position: absolute;
        width:30%;
        left:0;
    }


    .left_div{
    width: 49%;
    }

    .left_div > a{
        color:white;
        text-decoration: none;
        font-family: MyFont;
        /* background-color: rgba(255, 0, 0, .4); */
        padding: 5%;
        margin: 0;
        
    }

    #right_nav{
        color: white;
        display: flex;
        position: absolute;
        width:30%;
        right:0;
    }


    .right_div{
    width: 49%;
    }

    .right_div > a{
        color:white;
        text-decoration: none;
        font-family: MyFont;
        /* background-color: rgba(255, 0, 0, .4); */
        padding: 5%;
        margin: 0;
        
    }

    .menu-btn{
        display: none;
    }

}


@media only screen and (min-width: 600px) and (max-width: 800px) {
    #left_nav{
        color: white;
        position: absolute;
        width:30%;
        left:0;
    }

    .left_div > a{
        color:white;
        text-decoration: none;
        font-family: MyFont;
        /* background-color: rgba(255, 0, 0, .4); */
        padding: 5%;
    }

    .left_div:nth-child(1) {
        margin-top: -10%;
    }

    .left_div:nth-child(2) {
        margin-right: -50%;
        margin-top: 5%;
        margin-bottom: -40%;
    }

    #right_nav{
        color: white;
        position: absolute;
        width:30%;
        right:0;
    }

    .right_div > a{
        color:white;
        text-decoration: none;
        font-family: MyFont;
        /* background-color: rgba(255, 0, 0, .4); */
        padding: 5%;
        margin: 0;
    }

    .right_div:nth-child(1) {
        margin-top: -10%;
    }

    .right_div:nth-child(2) {
        margin-left: -50%;
        margin-top: 5%;
        margin-bottom: -40%;
    }

    .menu-btn{
        display: none;
    }

}

@media only screen  and (max-width: 600px){
    #left_nav, #right_nav{
        display: none;
    }
}

footer > div{
    /* display: flex; */
    flex: 1;
    background-color: black;
    color: white;
    text-align: center;
    margin: 0;
    padding-top: 10px;
    height: 100%;
}