/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Site title */
.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Tagline */
.tagline {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* Section headings */
h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Link buttons */
.links {
  margin-bottom: 60px;
}

.link-block {
  display: block;
  padding: 18px 20px;
  margin-bottom: 10px;
  border: 1.5px solid #111;
  border-radius: 6px;
  text-decoration: none;
  color: #111;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.link-block:hover {
  background: #28FF35;
  color: #fff;
  border-color: #28FF35;
  transform: translateY(-1px);
}

/* Social / bottom links */
.socials {
  margin-bottom: 40px;
}

.footer-text {
  font-size: 1.05rem;
  color: #111;
}

.social-link {
  color: #071EF6;
  text-decoration: underline;
  font-size: 1.05rem;
  display: inline;
}

.social-link:hover {
  color: #28FF35;
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    max-width: 560px;
    padding: 80px 24px 100px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 600px;
    padding: 100px 24px 120px;
  }
}
