:root {
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: #f7bdbe;
}

.site-header a {
  display: block;
}

.site-logo {
  display: block;
  width: 180px;
  height: auto;
}

.closure-page {
  width: min(100% - 30px, 1024px);
  margin: 2rem auto 4rem;
}

.auditorium-image {
  display: block;
  width: 100%;
  height: auto;
}

.closure-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1rem 0;
  text-align: center;
}

.closure-content h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
}

.closure-content p {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: inline-flex;
  min-width: 8rem;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border: 2px solid #111;
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: #99d0c1;
}

.site-footer {
  margin-top: auto;
  padding: 18px 15px;
  background: #000;
  color: #fff;
  text-align: center;
}

@media (max-width: 575px) {
  .site-header {
    min-height: 100px;
  }

  .site-logo {
    width: 140px;
  }

  .closure-page {
    margin-top: 1rem;
  }

  .closure-content {
    padding-top: 1.75rem;
  }

  .closure-content p {
    font-size: 1rem;
  }

  .social-links {
    flex-direction: column;
  }

  .social-links a {
    width: 100%;
  }
}
