* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #FFC2EC;
}

html {
  background-image: url(background.webp);
  background-size: cover;
  background-attachment: local;
  background-position: top left;
}


body {
    /* Gorgeous Georgia */
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--primary-pink);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.splash-page {
    margin: auto;
    max-width: 800px;
    text-align: center;
    min-height: 200px;
}

.splash-desktop {
    display: block;
    max-width: 100%;
}

.splash-mobile {
    display: none;
}

.splash-page h1 {
    display: none;
}

.splash-page p {
    font-size: 1.2em;
    margin-top: 20px;
}

footer {
    color: var(--primary-pink);
    padding: 20px 0px 20px 0px;
}

.footer-bottom {
    text-align: center;
}

a {
    color: var(--primary-pink);
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 640px) {
  .grid {
      flex-direction: column;
  }

  .footer-content {
      flex-direction: column;
      text-align: center;
  }

  .splash-mobile {
      display: block;
      margin: 0px auto;
      max-width: 100%;
  }

  .splash-desktop {
      display: none;
  }

  .splash-page {
      margin: auto 10px auto 10px;
      text-align: center;
      min-height: 200px;
  }

}
