body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

p.byline {
  margin-bottom:50px;
}

a {
  font-size: 1em;
  color: #fff;
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 480px) {
  h1 {
      font-size: 1.5em;
  }

  p {
      font-size: 1em;
  }

  a {
      font-size: 0.9em;
  }
}
