body {
  background-color: #000;
  color: #fff;
  font-family: Lato, Arial;
}

button {
  display: block;
  font-size: 32px;
  border-radius: 10px;
  color: #fff;
  border: 5px #fff solid;
  background-color: #000;
  font-family: Lato;
  font-weight: bold;
  padding: 10px;
  margin-top: 50px;
  transition: 0.1s;
}

button:hover {
  transform: scale(1.2);
  transition: 0.1s;
}

button:active {
  transform: scale(0.9);
  transition: 0.1s;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

a:visited {
  color: #fff;
}

.main {
  max-width: 800px;
  margin: auto;
  height: 98vh;
}

.main h1 {
  font-size: 92px;
  margin: 0;
  justify-content: center;
  display: flex;
}

.main p {
  font-size: 38px;
  margin: 0;
  justify-content: center;
  display: flex;
}