body, html{
  margin: 0;
  padding: 0;
  background-image: url("../Images/Lights-Down.jpg");

  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;

  height: 100%; 
  width: 100%;

}


header{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  top: 0px;
  background-color: #0000008c;  
  align-content: stretch;
  backdrop-filter: blur(2px);
}


h1{
  
  padding: 3px;
  
  float: left;
  color: #00c5e3;
  margin-left: 2%;
  margin-top: 1.5%;
  font-size: 1.5rem;
  font-family: 'Press Start 2P', cursive; 


}

.burgerButton{
font-size: 30px;
color: white;
float: right;
margin-right: 40px;
line-height: 80px;
cursor: pointer;
display: none;
}
#check{
display: none;
}


span{
  color: #ffffff;

}

ul {
  width:fit-content ;
  float: right;
  margin-top: 8px;
}

li{
  display:flex;
  flex-direction: row;
  padding:15px 30px;
  
}
.navBtn{
  background-color: Transparent;
  background-repeat:no-repeat;
  border: none;

  

  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 100%;
  margin-right: 30px;
  text-transform: uppercase;

}
.navBtn:hover{
  color: #00c5e3;
  transition: 0.5s;
  cursor: pointer;
}
/*cards https://www.youtube.com/watch?v=jAJxKnGHcDk*/
.container{
padding: 2rem 5%;
}

.flex{
display: flex;
flex-wrap: wrap;
gap: 1.5rem;

}

.card{
background: #282828a3;
padding: 15px 20px;
box-shadow: 0 0 3px rgba(0,0, 0, 0.5);
flex: 1 0 15em;

animation-name: fadeIn, slideIn;
animation-duration: 1s, 2s;
}
@keyframes fadeIn {
from { opacity: 0; }
to   { opacity: 1; }
}

@keyframes slideIn{
0%{
  transform: translateY(500px);
}
100%{

}
}

.card h2{
margin-bottom: 15px;
text-transform: capitalize;
color: rgb(245, 245, 245);
font-size: 1.5rem;
font-family: 'Press Start 2P', cursive;
}

.card p{
text-align: left;
line-height: 130%;
margin-bottom: 20px;
color: #ffffff;
font-family: 'Roboto', sans-serif;
}
.btn {
  
position: relative;
display: inline-block;
text-decoration: none;
color: black;
background-color: #00c5e3;
padding: 10px 20px;
letter-spacing: 1px;
transition: 0.5s ease-in-out;
border-radius: 5px;
border: 1px solid #00c5e3;
margin: 10px 0 ;


}
.btn:hover{
background: white;
color: black;
}

@media (max-width: 1000px){
  .burgerButton{
    display: inline;
    right: 0%;
    
  }

  nav ul{

    position: fixed;
    width: 100%;
    background-color: rgba(0,0, 0, 0.8);
    height: 100vh;
    text-align: center;
    top: 11.9%;
    left: -120%;
    transition: all 1s;
  
  }
  nav ul li{
    display: block;
    pad: 30px 0;
  }

  nav ul li a{
    font-size: 25px;
    columns: white;
    text-transform: uppercase;
  }

  #check:checked ~ ul{
    left: 0%;
  }

}


