* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  background: #fbfcff;
}

.container {
  color: #eee;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("/assets/background.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 30px;
}

img {
  height: 50vmin;
  will-change: filter;
}

img:hover {
  filter: drop-shadow(0 0 2em #61dafbaa);
}

h1 {
  color: #eee;
  font-size: 1.75em;
  font-weight: 500;
  margin-top: 50px;
  letter-spacing: 1.5px;
  text-align: center;
}

p {
  margin-top: 25px;
  text-align: center;
}

a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: #f3851e;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 1.25em;
  }
}
