html, body{
  width: 100%;
  height: 100%;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  }
  @keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

body{
  display: flex;
  flex: grow;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-family: 'PT Sans', sans-serif;
}

.site-main {
text-align: center;}

.m-t-2{
  margin-top: 2em;
}

.m-y-2{
  margin: 2em 0;
}

.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 4px;
}

.btn.btn-apply{
  background-color: #000;
  font-size: 1em;
  text-transform: uppercase;
}

.btn.btn-apply:hover{
  background-color: rgb(61, 61, 61);
}

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

a:hover{
  text-decoration-color: none;
}