body main {
  background: linear-gradient(180deg, rgb(44, 44, 44) 0%, rgb(0, 0, 0) 100%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main #content {
  width: 75%;
  height: 80%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5%;
}
body main #content img {
  height: 60%;
}
body main #content #hash {
  color: white;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 2.5%;
  text-transform: lowercase;
}
body main #content #hash span {
  font-weight: bold;
  text-transform: uppercase;
}
body main #content #download {
  background-color: white;
  border-radius: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 3s ease-in-out infinite;
}
body main #content #download a {
  color: #DC1605;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-size: 3rem;
  margin: 0.75rem 2rem;
  font-family: Arial, sans-serif;
}
body main #content #download:hover {
  background-color: #DC1605;
}
body main #content #download:hover a {
  color: white;
}
body main #help {
  background-color: white;
  border-radius: 2.5rem;
  padding: 1rem 0.5rem;
  width: 3.5%;
  height: 4%;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main #help a {
  text-decoration: none;
  color: #DC1605;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 2.5rem;
}
body main #help a:hover {
  color: black;
}
body main #cookies {
  background-color: white;
  border-radius: 2.5rem;
  padding: 1rem 0.5rem;
  width: 15%;
  height: 15%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
}
body main #cookies p {
  color: #DC1605;
  font-family: Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}
body main #cookies p a {
  color: #DC1605;
}
body main #cookies p a:hover {
  color: black;
}
body main #cookies div {
  width: 70%;
  display: flex;
  justify-content: space-around;
}
body main #cookies div a {
  color: black;
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
}
body main #cookies div a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  body main #content {
    height: 70%;
    width: 95%;
  }
  body main #content img {
    height: auto;
    width: 80%;
  }
  body main #content #hash {
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.75rem;
  }
  body main #content #download a {
    font-size: 2rem;
  }
  body main #help {
    width: 7%;
    height: 1%;
  }
  body main #help a {
    font-size: 1.5rem;
  }
  body main #cookies {
    width: 35%;
    height: 10%;
    padding: 0.5rem 0.4rem;
  }
  body main #cookies p {
    font-size: 1.125rem;
  }
  body main #cookies div a {
    font-size: 1rem;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/*# sourceMappingURL=screen.css.map */
