body {
    width: 100%;
    min-height: 100vh;
    display: relative;
    margin: 0;
    padding: 0;
    background-color: rgb(40, 40, 40);
  }
  .wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    align-items: center;
    justify-content: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }
  h1 {
    color: #EA8000;
    font-family: arial;
    font-weight: bold;
    font-size: 50px;
    letter-spacing: 5px;
    line-height: 1rem;
    text-shadow: 0 0 4px white;
  }
  h2 {
    color: #EA8000;
    font-family: arial;
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 3px;
    line-height: .8rem;
    text-shadow: 0 0 2.5px white;
  }
  h4 {
    color: #EA8000;
    font-family: arial;
    font-weight: 300;
    font-size: 16px;
  }
  .button {
    display: block;
    margin: 20px 0 0;
    padding: 15px 30px;
    background: rgb(60,60,60);
    color: #EA8000;
    font-family: arial;
    letter-spacing: 5px;
    border-radius: .4rem;
    text-decoration: none;
    box-shadow: 0 0 15px white;
    text-align: right;
  }
  a {
    color: #EA8000;
    text-decoration: none;
  }