body {
  font-family: "Montserrat", sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(87, 87, 87, 1) 50%, rgba(33, 33, 33, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(87, 87, 87, 1) 50%, rgba(33, 33, 33, 1) 100%);
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(87, 87, 87, 1) 50%, rgba(33, 33, 33, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#212121", GradientType=1);
}
.container {
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 0px 20px 20px 20px;
}
.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 30px;
  margin-top: 30px;
}
.name-tag {
  margin-top: 0;
  display: block;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  width: 100%;
  border-radius: 20px 20px 0px 0px;
  padding: 20px 20px;
}
.name-tag hr {
  background-color: rgb(241 241 241);
  color: rgb(129 129 129);
  height: 1px;
  margin: 25px 18px;
}
.name-tag h1 {
  color: black;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-align: center;
  justify-content: center;
  text-transform: uppercase;
}
.name-tag p {
  letter-spacing: 0.8em;
  text-align: center;
}
.button {}
.button a {
  text-decoration: none;
  display: block;
  font-weight: 300;
  font-size: 19px;
  width: 150px;
  color: black;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 5px;
  padding: 20px 100px;
  margin: 30px;
  background-color: white;
  border: 3px solid white;
  border-radius: 12px;
  transition: all 0.5s;
}
.button a:hover {
  color: white;
  background-color: #000000;
  border: 3px solid white;
} /* CSS Document */