.actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.actions img {
  height: 1.2rem;
  width: auto;
}

footer {
  background-color: #f8f8f8;
}

.sponsor-container {
  display: flex;
  margin: auto;
  max-width: 800px;
  justify-content: space-between;
  align-items: center;
  padding: 32px;
}

.footer-logo {
  height: 30px;
  width: auto;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  max-width: 70rem;
  margin: auto;
  text-align: center;
  gap: 32px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 16px;
}

section p {
  color: var(--ars-color-secondary-2)
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.arnes-logo {
  height: 3rem;
  width: auto;
}

@media screen and (max-width: 1200px) {
  .arnes-logo {
    height: 2.5rem;
  }

  section h1 {
    font-size: 2rem !important;
  }

  section p {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 800px) {
  .actions {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 2rem;
    align-items: center;
  }

  .arnes-logo {
    height: 2rem;
  }

  section h1 {
    font-size: 1.5rem !important;
  }

  section p {
    font-size: 1rem !important;
  }

  .actions a {
    width: 17rem !important;
    justify-content: center;
    font-size: 0.8rem !important;
  }

  footer .sponsor-container {
    flex-direction: column;
    gap: 32px;
    padding: 32px;
  }
}