body {
  background-color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 10% auto;
  padding: 20px;
  text-align: center;
}
h1 {
  text-align: center;
  color: #333;
  font-size: 70px;
  font-weight: 200;
  span {
    text-transform: uppercase;
    display: block;
    font-size: 1rem;
  }
}
p {
  color: #666;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
}
em {
  color: #333;
  font-style: normal;
  font-size: 1rem;
  text-transform: uppercase;
}
p a {
  color: rgb(167, 108, 8);
  text-decoration: none;
  border-bottom: 1px solid #e9e9e9;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}
p a:hover {
  color: rgb(54, 30, 0);
  border-bottom: 1px solid rgb(113, 113, 113);
}
