body {
  font-family: 'Lato', sans-serif;
  background-color: #333333;
}

.container {
  display: flex; /* or inline-flex */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0.75em;
  padding-right: 0.75em; 
}

.header {
  text-align: center;
  color: white;
  font-size: 32px;
}

.phrase {
  text-align: center;
  color: white;
  font-size: 20px;
}

.custom-btn {
  width: 130px;
  height: 40px;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  background-color: #aa9755;
  cursor: pointer;
  position: relative;
  display: inline-block;
  outline: none;
  border: 3px solid #aa9755;
  backface-visibility: hidden;
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
}
.custom-btn:active{
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.footer {
  text-align: center;
  color: white;
  font-size: 12px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

*:focus {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}