main {
  width: 100%;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.content {
  width: 50%;
  margin: 0 auto;
  text-wrap: pretty;
}

@media screen and (max-width: 900px) {
  .content {
    width: 100%;
    margin: 0 var(--page-padding);
  }
}

a:has(button) {
  text-decoration: none !important;
}

button {
  display: block;
  width: fit-content;
  padding: 0.75rem 1rem;
  background-color: var(--accent);
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.15s ease;
  color: #000;
  margin: 2rem auto;
}

button:active {
  transform: scale(0.975);
}

p {
  margin: 1rem auto;
}

ul li {
  margin: 0.5rem 0;
}