.section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background-color: white;

  &.secondary {
    flex: none;
    background-color: #f2f2f2;
  }
}

.section-title {
  margin: 0;
  padding: 30px 0;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  background-color: #f2f2f2;
}

.section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-button {
  border: none;
  padding: 9px 15px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #fcd35d;
  color: white;
  cursor: pointer;

  &.empty {
    border: 1px solid #fcd35d;
    background: none;
    color: black;
  }

  &.red {
    background-color: #ff6500;

    &:hover {
      background-color: #c40c0c;
    }
  }

  &:hover {
    background-color: #f8c226;
  }
}
