* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
   background-image:url("black1.jpg");
  
   background-repeat:no-repeat;
   background-size:100% 100%;
   background-attachment:fixed;
  font-family: sans-serif;
}

a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: lowercase;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.logo {
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #f0f, 0 0 70px #f0f, 0 0 80px #f0f;
  font-size: 1.8rem;
  color:white;
  padding-left: 20px;
}

.hamburger {
  padding-right: 20px;
  cursor: pointer;
}

.hamburger .line {
      text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #f0f, 0 0 70px #f0f, 0 0 80px #f0f;
  display: block;
  width: 40px;
  height: 5px;
  margin-bottom: 10px;
  background-color: white;
}

.nav__link {
  position: fixed;
  width: 94%;
  top: 5rem;
  left: 18px;
  background-color:transparent;
}

.nav__link a {
    color:black;
      text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #f0f, 0 0 70px #f0f, 0 0 80px #f0f;
  display: block;
  text-align: center;
  padding: 10px 0;
}

.nav__link a:hover {
    text-shadow: 0 0 10px #000, 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #fff, 0 0 70px #f0f, 0 0 80px #fff;
  color:black;
}

.hide {
  display: none;
}
