
body {
    background-image: linear-gradient(black, rgb(36, 0, 0));
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Press Start 2P", "consolas", sans-serif;
    line-height: 1.5;
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  
  @keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

  h1{
    font-family: "Press Start 2P", "consolas", sans-serif;
    text-align: center;
    background: -webkit-linear-gradient(#ff0000, #5d0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

h2, h3, h4, h5, h6{
    font-family: "Press Start 2P", "consolas", sans-serif;
    color: #ff0000;
    text-align: center;
    text-shadow: 0 0 3px #FF0000;

  }
  .nav-new {
    font-size: 62.5%;
    line-height: 1;
    font-family: "Press Start 2P", "consolas", sans-serif;
    text-align: left;
 }
 .nav-new ul,
.nav-new li {
   margin: 0px;
   padding: 0px;
   line-height: 1.4;
}
.nav-new ul {
    list-style: none;
    text-align: center;
    border-left: 1px solid red;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
 }
 .nav-new li {
    display: inline;
 }
 
 .nav-new li a {
    color: red;
 }
 
 .nav-new li span {
    display: inline-block;
    padding: 4px 15px;
    font-size: 15px;
    color: red;
    text-transform: uppercase;
 }
 .nav-new li span.yellow {
    color: red;
 }
 a:hover {
    color: red;
    text-shadow:0px 0px 30px red;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  
  /*whar! custom things*/

.teamimg {

   display: flex;
   justify-content: center;
   padding: 5px;

}

.hover08 figure img {
	-webkit-filter: sepia(100%);
	filter: sepia(100%)brightness(70%)saturate(125%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.hover08 figure:hover img {
	-webkit-filter: sepia(0);
	filter: sepia(0);
}