html,
body {
  height: 100vh;
  background-color: #FEBC58;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FEBC58;
}

.random-beer {
  margin-top: 150px;
  color: white;
  font-size: 30px;
  font-family: helvetica;
}

.description {
  max-width: 600px;
  color: #f7ecb7;
  font-family: helvetica;
  font-szie: 20px;
}

.beer-button {
  display: inline-flex;
}

.beer-button a{
  display: inline-block;
  text-decoration: none;
  background-color: #FEBC58;
  box-shadow: -8px -8px 12px 0 rgba(0, 0, 0, 0.3),
              12px 12px 16px rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beer-button a:hover {
  box-shadow: inset 6px 6px 10px 0 rgba(0, 0, 0, 0.2),
  inset -6px -6px 10px 0 rgba(255, 255, 255, 0.5),
}

.beer-button .fab {
  padding-left: 3px;
}