* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Trebuchet MS", "Helvetica", sans-serif;
  background: #0D0D0D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
}

h1 {
  color: #FFD700;
  font-size: 10vw;
}

.logo img {
  height: 30vh;
  margin: 6vh auto;
}

.download-appstore img {
  height: 10vh;
  margin: 0 auto 2vh;
}

p {
  width: 100vw;
  color: #FFD700;
  font-size: 2vh;
  margin-bottom: 15vh;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  background: #FFD700;
  height: 15vh;
  width: 100vw;
}

footer img {
  height: 6vh;
  margin: auto 2vw;
}

footer #privacy {
  color: #0D0D0D;
  font-size: 1.5vh;
}

#privacy:hover {
  color: black;
}

@media only screen and (min-width: 480px) and (max-width: 960px) {
  h1 {
    font-size: 7vw;
  }
}

@media only screen and (min-width: 961px) {
  h1 {
    font-size: 6vw;
  }
}
