.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.714em 1.2em;
  background-color: #fff;
  border: 1px solid #666;
  border-radius: 24px;
  outline: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: #333;
}
.button:hover {
  color: #fff;
  background-color: #016dbf;
  border-color: #016dbf;
}
.button:active {
  color: #fff;
  background-color: #005493;
  border-color: #005493;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-column-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.flex-column {
  display: flex;
  flex-direction: column;
}

.content {
  margin-top: 4.167vw;
}


@media (max-width: 768px) {
  html {
    font-size: 20px;
    font-size: 5.333vw;
  }
  .content {
    margin-top: 60px;
  }
}
