html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: #fff;
  font-family: 'Lato', sans-serif;
}

.soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 0 30px;
}

p {
  width: 100%;
  margin: 30px 0 6px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
  color: #707070;
  font-size: 25px;
  text-align: center;
}

a {
  color: #0091ff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #000;
}