* {
  padding: 0;
  margin: 0;
  list-style: none;
}

body {
  background-image: url("./images/assassination.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(17, 17, 17, 0.7);
  background-blend-mode: multiply;
}

/* headers */
nav.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(11, 11, 11);
  height: 110px;
  font-family: "Montserrat";
}

.logo {
  width: 50px;
  height: 50px;
  line-height: 100px;
  margin-left: 30px;
  margin-top: 30px;
  border-radius: 50%;
  border-color: rgb(74, 0, 120);
  border-style: groove;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  float: left;
}

.logo:hover,
.logo:active {
  transform: scale(1.5) rotate(360deg);
  border-color: rgb(80, 0, 156);
}

nav ul {
  float: right;
  margin-right: 20px;
}

nav ul li {
  display: inline-block;
  line-height: 100px;
  margin: 0 20px;
}

nav ul li a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 5px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

nav ul li a:hover,
a.active {
  background-color: rgb(215, 215, 215);
  color: black;
  font-size: 25px;
}

nav p {
  color: white;
  display: inline-block;
  top: 45px;
  margin-left: 20px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  font-family: "Montserrat";
}

.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  cursor: pointer;
  display: none;
  margin-right: 20px;
  margin-top: 16px;
}

#check {
  display: none;
}

/* end of headers */

/* main page */
.pfpmain {
  border-radius: 5%;
  border-color: white;
  border-style: outset;
  width: 200px;
  height: 200px;
  display: block;
  margin-top: 200px;
  margin-right: auto;
  margin-left: auto;
  animation: hithere 1s ease 1;
}

.title {
  width: 220px;
  margin: 0 auto;
  animation: slide-up 2s ease;
  font-family: "Montserrat", sans-serif;
  color: white;
  text-align: center;
  margin-top: 10px;
}

.dctag {
  width: 220px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  animation: slide-up 3s ease;
  color: white;
  text-align: center;
}

.notready {
  width: 220px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  animation: slide-up 4s ease;
  color: white;
  text-align: center;
}

span.luv {
  font-family: cursive;
  font-weight: lighter;
}

/* end of main page */

/* shake effect image */

@keyframes hithere {
  30% {
    transform: scale(1.2);
  }

  40%,
  60% {
    transform: rotate(-20deg) scale(1.2);
  }

  50% {
    transform: rotate(20deg) scale(1.2);
  }

  70% {
    transform: rotate(0deg) scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* slideup effect */
@keyframes slide-up {
  from {
    opacity: 0.2;
    transform: translateY(250px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* navbar responsive */
@media (max-width: 952px) {
  nav ul li a {
    font-size: 16px;
  }
}

@media (max-width: 858px) {
  .pfpmain {
    margin-top: 200px;
  }

  #check:checked ~ .checkbtn {
    font-size: 45px;
  }

  .checkbtn:hover {
    font-size: 45px;
  }

  .checkbtn {
    display: block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
  }

  ul {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(23, 23, 23, 0.938);
    top: 110px;
    left: 100%;
    text-align: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
  }

  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-size: 20px;
  }

  #check:checked ~ ul {
    left: 0;
  }
}
/* end of navbar responsive */
