body {
  font-family: "Quicksand";
  height:100vh;
  margin:0;
  background:url('../img/bg.jpg') center/cover;
  /* background-image
  background-position
  background-size */
}
body:before {
  content:'';
  width: 100%;
  height: 100%;
  background:rgba(0,0,0,0.65);
  position: absolute;
  top:0;
  left:0;
}
nav {
  display: flex;
  justify-content: flex-end;
  padding:20px;
  position: relative;
  z-index:1;
}
nav a {
  color:#fff;
  text-decoration: none;
  font-size: 25px;
  margin-left: 30px;
  transition:.3s all ease-in-out;
}
nav a:hover {
  transform:scale(1.2);
  color:rgb(194, 255, 71);
}

@media screen and (max-width:1024px) {
  .burger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index:2;
    width: 40px;
    height: 40px;
    border:3px solid #fff;
    border-radius:10px;
    display: flex;
    flex-direction:column;
    justify-content:space-evenly;
    align-items:center;
    cursor:pointer;
  }
  .burger-menu div {
    width: 70%;
    height: 3px;
    background-color:#fff;
    border-radius:3px;
  }
  nav {
    flex-direction:column;
    align-items:center;
    height: 100vh;
    box-sizing:border-box;
    justify-content:space-evenly;
    transform:translateX(-100%);
    transition:.3s all ease-in-out;
  }
  nav.active {
    transform:translateX(0);
  }
}

