html, body{
  overflow: hidden;
  margin: 0;
  background-color: #343434;
  width: 100%;
  height: 100%;
  color: #f1f1f1;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: start;
}

#content {
  margin-top: 15vh;
  text-align: center;
  padding: 20px;
}

#content h1{
  font-size: 4rem;
  margin-bottom: 0px;
}

#content p{
  margin-top: 50px;
  font-size: 1.1rem;
}

.green {
  color: #bcf069;
}

#logo {
  position: absolute;
  bottom: 30px;
  max-width: 500px;
}

@media only screen and (min-width: 800px) {
  #content h1{
    font-size: 7rem;
  }
  #content p{
    font-size: 1.4rem;
  }
}