.s1-wrap {
  max-width: 100%;
}

.s1-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 0.5rem;
  justify-content: center;
}

.s1-btn {
  appearance: none;
  border: 0;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  transition: 0.15s ease all;
}

.s1-btn:hover {
  transform: translateY(-3px);
  color: #fff
} 

.s1-btn:focus {
  outline: 2px solid #63bff5;
  outline-offset: 2px;
}

.s1-btn-primary {
  background: #63bff5;
  color: #fff;
}

.s1-btn-secondary {
  background: #69defb;
  color: #fff;
}

.s1-meta {
  font-size: 0.92rem;
  color: #999;
  text-align: center;
}

.s1-meta a {
  color: #63bff5;
  text-decoration: none;
}

.s1-meta a:hover {
  text-decoration: none;
}