   @font-face {
  font-family: "girl";      /* name you choose */
  src: url("/fonts/GirlOnAnAlleyChmc-W7rV.ttf")       /* path to your .ttf file */
       format("truetype");           /* indicates TTF format */
  font-weight: normal;
  font-style: normal;
}

  
/* Global background */
body {
  margin: 0;
  font-family: Arial, sans-serif;

  background-image: url("https://thumbs.dreamstime.com/b/galaxy-fabric-seamless-pattern-blue-abstract-galaxy-fabric-seamless-pattern-blue-abstract-background-design-wrapping-paper-176762110.jpg");
  background-repeat: repeat;
  
    font-family: "girl"; /* inherited by <p> inside */
}

/* OUTER CONTAINER */
.page-container {
  width: 75%;
  margin: 0 auto; /* centers horizontally */
  margin-top: 2rem;
}

/* HERO / WALLPAPER BOX */
.hero {
  position: relative;
  height: 600px;

  background-image: url("https://wallpapercat.com/w/full/6/a/b/28547-3840x2160-desktop-4k-jupiter-background-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  

}

/* Title centered over wallpaper */
.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: white;
  font-size: 3rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  margin: 0;
}



/* MAIN covers 100% of the container */
.content {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers children horizontally */
  background-color: #151F4D;
  color: #C71100;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Intro section */
.intro {
  text-align: center;
  margin-bottom: 40px;
}

.intro-img {
  max-width: 100%;
  height: auto;
  width: 100%; /* optional fixed width */
  margin-bottom: 20px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* Grid items */
.grid-item {
  text-align: center;
}

/* Grid images */
.grid-item img {
  width: 100%;
  height: auto;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

/* Link box styling */
.link-box {
  background: white;             /* White background */
  width: 100%;                   /* Matches image container width */
  max-width: 300px;              /* Matches image max-width */
  margin: 10px auto 0;           /* Center under image */
  padding: 10px 0;                /* Optional spacing */
  box-sizing: border-box;
  border: 1px solid #ddd;        /* Optional border */
  margin-top: 0;
}

/* Link itself */
.link-box a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
}











