* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
/* Body of animated background gradient */
body {
  color: aliceblue;
  margin: 0 auto;
  font-family: "neue-haas-grotesk-display",sans-serif; 
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.5px;
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

/* Login link */
section h3 a.login {
  display: block;
  float: right;
  font-size: 30px;
  font-weight: 700;
  text-decoration: none;
  margin: 10px;
  color: aliceblue;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  padding: 5px;
}

/* Welcome page junkfood title */
section h1 a#junkfood {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 200px;
  font-weight: 900;
  color: aliceblue;
  width: 100vw;
  height: 85vh;
  text-decoration: none;
  text-shadow: 0px 0px 10px #000000;
}

/* Media Queries */

/* Tablets */
@media screen and (max-width: 992px) {
  div h3 a.login {
    width: 21.5%;
  }
  div h1 a#junkfood {
    width: 100%;
    font-size: 150px;
    margin-right: 100px;
  }
}
  
  /* Large smartphones - navbar changes color */
  @media screen and (max-width: 768px) {
    div h3 a.login {
      width: 45%;
     font-size: 20px;
   }
    div h1 a#junkfood {
    font-size: 90px;
  }
}

/* Small smartphones - image placeholders change color */
@media screen and (max-width: 576px) {
  div h3 a.login {
    width: 45%;
   font-size: 15px;
 }
 div h1 a#junkfood {
  font-size: 80px;
}
}