body {
    background-color: #fcfcfc;
    color: black;
}
a {
  text-decoration: none;
  outline: none;
  display: inline-block;
  width: 250px;
  height: 45px;
  line-height: 45px;
  border-radius: 10px;
  margin: 10px 20px;
  font-family: 'Courier New', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 600;
  color: #524f4e;
  background: white;
  box-shadow: 0 8px 15px rgba(0,0,0,.2);
  transition: .3s;
}
a:hover {
  background: black;
  box-shadow: 0 15px 20px #9c9c9c;
  color: white;
  transform: translateY(-7px);
}
button {
  text-decoration: none;
  outline: non;
  display: inline-block;
  width: 250px;
  height: 45px;
  line-height: 45px;
  border-radius: 10px;
  margin: 10px 20px;
  font-family: 'Courier New', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 600;
  color: #524f4e;
  background: white;
  box-shadow: 0 8px 15px rgba(0,0,0,.2);
  transition: .3s;
}
button:hover {
  background: black;
  box-shadow: 0 15px 20px #9c9c9c;
  color: white;
  transform: translateY(-7px);
}
