@import "https://fonts.googleapis.com/css?family=Open+Sans|Oswald";
@import url("https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:300,400,800&display=swap");

body {
  font-family: Oswald, arial;
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
  overflow-x: hidden !important;
}

a {
	text-decoration: none;
}

.header {
  background: #cc0f17;
  position: fixed;
  z-index: 1;
  right: 0;
  top: 0;
  left: 0;
  height: 65px;
  width: 100vw;
    	-webkit-box-shadow: 0 6px 6px -6px black;
	   -moz-box-shadow: 0 6px 6px -6px black;
	        box-shadow: 0 6px 6px -6px black;
}

hr{
   border:0;
   border-top:1px solid #eee;
   margin: 19px 5px;
   }
  
.footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  //padding: 1rem;
  background-color: #cc0f17;
  text-align: left;
  height: 45px;
}

.time {
  position: fixed;
  left: 0;
  top: 0;
}

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}

#overlay-button {
  position: absolute;
  right: 2em;
  top: 0.45em;
  padding: 26px 11px;
  z-index: 5;
  cursor: pointer;
  user-select: none;
}
#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #FFF;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #FFF;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #F9F9F9;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked ~ #overlay {
  visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
  opacity: 1;
}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}

#overlay {
  height: 100vh;
  width: 100vw;
  background-image: linear-gradient(rgba(0, 0, 290, 0.5), rgba(0, 0, 180, 0.5)), url("../img/rc3.jpg");
  //background: #ec6451;
  z-index: 2;
  visibility: hidden;
  position: fixed;
  top: 0;
  //z-index: 10000;
}
#overlay.active {
  visibility: visible;
}
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}
#overlay ul li {
  padding: 0.5em;
}
#overlay ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
}
#overlay ul li a:hover {
  color: #f9f9f9;
}



