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

.line{
	text-align: center;
	color: black;
	font-size: 40px;
	font-family: Arial, Helvetica, sans-serif;
}

.logo{
	width: 20%;
}

.header{
	background-color: black;
	border-top: 3px solid green;
	border-bottom: 3px solid green;
}

.hoverable {
  display: inline-block;
  backface-visibility: hidden;
  vertical-align: middle;
  position: relative;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  tranform: translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
}

.hoverable:before {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 80%);
  /* W3C */
  transition-duration: 0.3s;
  transition-property: transform, opacity;
}

.hoverable:hover, .hoverable:active, .hoverable:focus {
  transform: translateY(-5px);
}

.hoverable:hover:before, .hoverable:active:before, .hoverable:focus:before {
  opacity: 1;
  transform: translateY(-5px);
}

footer {
  text-align: center;
  padding: 3px;
  background-color: black;
  color: white;
  margin-top: auto;
}

.fLink{
	color: white;
	font-size: 17px;
}

.fLink:hover{
	color: white;
}

@keyframes bounce-animation {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.bounce {
  animation-name: bounce-animation;
  animation-duration: 2s;
}

/*everything below here is just setting up the page, so dont worry about it */


 
@media (min-width: 768px) and (max-width: 903px) {
  .navbar {
    text-align: center !important;
    float: none;
    display: inline-block;
	font-weight: 300;
  }
  nav li {
  margin-left: 1em;
  margin-right: 1em;
}
}

@media (min-width: 903px) {
  .navbar {
    text-align: center !important;
    float: none;
    display: inline-block;
	font-weight: 600;
  }
  
  nav li{
  	font-size: 17px;
  }
  
  .navMobile{
	display: block;	
}


  .mobileMenu{
	  display: none;
  }
  
  .bar1, .bar2, .bar3 {
	  display: none;
  }
  
  .mobileBR{
	display: none;
}
}



body {
  background-color: black;
  font-weight: 600;
  text-align: center !important;
  color: white;
}

nav {
  background: none !important;
  text-transform: uppercase;
}
nav li {
  margin-left: 2em;
  margin-right: 2em;
}
nav li a {
  transition: 0.5s color ease-in-out;
}

.page-title {
  opacity: 0.75 !important;
}


@media (min-width: 1px) and (max-width: 660px) {

	.logo{
		width: 60%;
	}
	
	nav li {
  		font-size: 13px;
	}
	
	.navMobile{
		display: none;
	}
	
	.mobileMenu{
		display: block;
		cursor: pointer;
	}
	
	.bar1, .bar2, .bar3 {
		width: 30px;
		height: 3px;
		background-color: white;
		margin: 6px 0;
		transition: 0.4s;
		margin-left: 5%;
	}
	
	.change .bar1 {
		transform: translate(0, 9px) rotate(-45deg);
	}

	.change .bar2 {opacity: 0;}

	.change .bar3 {
		transform: translate(0, -9px) rotate(45deg);
	}
}