body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: rgb(32, 32, 32);
  background-color: black;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

h1 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

main {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  align-items: center;
  background: white;
  border-radius: 0 0 36px 36px;
  flex-direction: column;
  padding: 80px 24px 100px;
}

.content {
  max-width: 32rem;
  width: 100%;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section {
  margin-bottom: 24px;

  p {
    opacity: 0.4;
  }
}

.text-container p {
  color: rgb(60, 60, 60);
  line-height: 1.65;
}

.bolt-link {
  color: oklch(55% 0.1109 157.78);
  text-decoration: underline;
  text-decoration-color: oklch(55% 0.1109 157.78 / 0.3);
  text-underline-offset: 3px;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.social-links a:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.social-links img {
  width: 30px;
  height: 30px;
  transition: all 0.5s ease-out;
  opacity: 0.25;
}

footer {
  background: linear-gradient(180deg, rgb(0, 2, 4) 0%, rgb(0, 4, 10) 100%);
  height: 120px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px;
  position: relative;
  overflow: hidden;
}

.footer-main {
  position: relative;
  z-index: 2;
  transform: translateY(-50px);
}
