html,
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background-color: #f5f5f5;
  display: flex;
}

main {
  width: 100%;
  height: 100%;
  padding: 32px 16px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px 0;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section > p {
  margin: 0 0 8px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.87);
}

.mb-0 {
  margin-bottom: 0;
}

.fs-16 {
  font-size: 16px;
}

.fs-12 {
  font-size: 12px;
}

button {
  height: 36px;
  width: 180px;
  border-radius: 18px;
  background-color: #ff7300;
  color: white;
  outline: none;
  border: none;
  opacity: 0.87;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background-color: #df6400;
}
