@import url('https://fonts.googleapis.com/css2?family=Inter&family=Merriweather&display=swap');

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #222;
  background-color: white;
}

h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', serif;
}

.content {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

a {
  text-decoration: underline;
}

.homepage-wrapper img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
}

#content img[alt="Our Logo"] {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  height: auto;
}

#content img[alt="Discord"],
#content img[alt="Website"] {
  display: inline-block;   /* or block, if you want them on separate lines */
  height: 30px;            /* adjust icon height */
  margin: 0 8px;           /* horizontal spacing between icons */
  vertical-align: middle;  /* align nicely with text if needed */
}

.single-column-header-title {
  font-size: 2rem; /* shrink for desktop */
  text-align: center;
  margin: 0.5rem auto;
}

@media (max-width: 600px) {
  .single-column-header-title {
    font-size: 1.3rem; /* even smaller on phones */
  }
}

