html {
  font-family: 'Roboto', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.button {
  background-color: #F6A323;
  border-radius: 50px;
  width: 270px;
  height: 50px;
  color: white;
  border: none;
  transition: 300ms;
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}

.button:hover,
.button:focus,
.button:active {
  transform: scale(1.1);
}

.hidden {
  display: none;
}