.body{
  font-family: sans-serif , Arial, Helvetica, sans-serif;
}

.layer{
  width: 100%;
  height: 100vh ;
  background-image: url(images/bg-image.jpg);  
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.button{
  background-color: transparent;
  border: 2px solid white;
  margin-top: 7px;
  color: white;
  border-radius: 30px;
  padding: 12px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
  font-weight: bold;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

.button:hover {
  background-color: white;
  transition: 0.5s;
  color: black;
  border: 3px solid black;
  
}

.logo{
  width: 400px;
  cursor: pointer;
  margin-top: 7px;

}

.Navbar{
  width: 90%;
height: 15%;
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
margin-left: 0px ;
  }

.content {
  color: white;
  position: absolute;
  top: 45%;
  left : 8%;
  z-index: 10;
  transform: translateY(-35%);
  font-family: 'Bebas Neue', sans-serif;
  font-family: 'Playfair Display', serif;
  font-family: 'Roboto', sans-serif;;
}

.h1 {
  font-size: 20px;
  margin: 10px 0 30px;
  line-height: 20px
}

.sidebar{
  width: 70px;
  height: 100vh;
  background: linear-gradient( #851e3e , #051e3e );
  position: absolute;
  right: 0;
  top: 0;
}

.menu-icon{
  color: white ;
  display: block;
  width: 40px;
  height: 25px;
  margin: 20px auto 0;
  cursor: pointer;
}

.social-links img{
  display: block;
  width: 40px;
  margin: 10px auto ;
  cursor: pointer;
}

.social-links{
  width: 70px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.skull img{
  width:100px;
animation: skull 10s linear infinite;
}

.skull{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  bottom: -30vh;
}

@keyframes skull{

  0%{
    transform: translateY(0);
    opacity: 0;
  }

  50%{
    transform: translateY(0);
    opacity: 1;
  }


  70%{
    transform: translateY(0);
    opacity: 1;
  }


  100%{
    transform: translateY(-100vh);
    opacity: 0;
  }




}

.skull img:nth-child(1){
  animation-delay: 2s;
  width: 30px;
}
.skull img:nth-child(2){
  animation-delay: 3s;
  width: 105px;
}
.skull img:nth-child(3){
  animation-delay: 4s;
  width: 90px;
}
.skull img:nth-child(4){
  animation-delay: 1.5s;
  width: 70px;
}
.skull img:nth-child(5){
  animation-delay: 2.7s;
  width: 80px;
}
.skull img:nth-child(6){
  animation-delay: 5s;
  width: 43px;
}
.skull img:nth-child(7){
  animation-delay: 7s;
  width: 152px;
}

