/* Basic styling for the body */
body {
  background-color: #040810;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
}

/* The canvas layers for the stars will have fixed positions */
.parallax-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows clicks to pass through to content below */
  z-index: -1; /* Place behind the main content */
}

/* Style for the main content to make it scrollable */
.container {
  position: relative;
  z-index: 1; /* Ensure content is on top of stars */
  min-height: 250vh; /* Set a height to enable plenty of scrolling */
  padding-top: 10vh;
  padding-bottom: 20vh;
  max-width: 80vw;
  margin: 0 auto;
}

header {
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(93, 74, 114, 0.8);
  border-top: 3px solid #ccc;
  border-bottom: 3px solid #ccc;
}

.header-title {
  font-family: "Dancing Script", cursive;
  font-size: 3em;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.quicklinks {
  margin-top: 40px;
}

.quicklinks h3 {
  text-align: center;
}

.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 768px) {
  .quicklinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quicklinks a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.quicklinks a:hover {
  text-decoration: underline;
}

.horoscope-section {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #ccc;
  background-color: rgba(93, 74, 114, 0.4);
}

.horoscope-section h2 {
  margin-top: 0;
  color: #fff;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.zodiac-name {
  white-space: nowrap;
  margin-right: 10px;
}

.zodiac-date {
  font-size: 0.6em;
  font-weight: normal;
}

footer {
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  justify-self: center;
}

footer a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

footer a:hover {
  text-decoration: underline;
}

.text-area {
  margin-top: 80px;
  max-width: 600px;
}
