@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */

  background-image: url("/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.site-title {
  font-family: 'Pacifico', cursive;
  font-size: 6vmin;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 6px rgba(242, 182, 193, 0.6),
    0 0 12px rgba(242, 182, 193, 0.35);
}
