/* ----- Global Styles ----- */
body {
  background-image: url("stars.webp");
  background-repeat: repeat;
  background-position: top left;
  background-attachment: fixed;
  background-color: black;
  font-family: Verdana, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #00ffff;
  text-align: center;
}

.gawshock-header {
  font-size: 60px;
  color: #00ffff;
  text-shadow: 3px 3px #000;
  display: inline-block;
  padding: 20px 40px;        /* you can also reduce padding if needed */
  margin: 10px auto 20px auto; /* top right bottom left */
  background-image: url("moon15.gif");
  background-size: contain;   /* keeps GIF proportional */
  background-repeat: no-repeat;
  background-position: center;
}

/* ----- Main H1 ----- */
/*h1 {
/*  font-size: 60px;
/*  padding: 15px 30px;       /* keep spacing */
/*  color: #00ffff;
/*  text-shadow: 3px 3px #000;
/*  display: inline-block;
/*  margin: 30px auto 40px auto;
/*}

/* ----- Rocket Container ----- */
.rocket-container {
  display: flex;
  justify-content: center; /* center rocket column */
  align-items: flex-start;
  margin: 20px;
  position: relative;
}

/* ----- Left & Right Headers ----- */
.left-header, .right-header {
  width: 180px;
}

.left-header {
  margin-right: 20px;
  text-align: right;
}

.right-header {
  margin-left: 20px;
  text-align: left;
}

/* ----- H2 Headers ----- */
.left-header h2, .right-header h2 {
  font-size: 28px;
  color: #00ffff;
  text-shadow: 1px 1px #000;
  text-decoration: underline;
  margin-bottom: 10px;
  display: inline-block;
  padding: 0;             /* remove box padding */
  border: none;           /* remove border */
  background-color: transparent; /* remove background */
}

/* ----- H3 Subheaders ----- */
.left-header h3, .right-header h3 {
  font-size: 20px;
  color: #00ffff;
  text-shadow: 1px 1px #000;
  text-decoration: underline;
  margin-bottom: 10px;
  display: inline-block;
  padding: 0;
  border: none;
  background-color: transparent;
}

/* ----- Center Rocket Subheader ----- */
.rocket-column h2 {
  font-size: 28px;
  color: #00ffff;
  text-shadow: 1px 1px #000;
  text-decoration: underline;
  margin-top: 20px;
  display: inline-block;
  padding: 0;
  border: none;
  background-color: transparent;
}

/* ----- Lists ----- */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  margin: 4px 0;
}

a {
  color: #ff00ff;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

a:hover {
  color: #ffff00;
  text-decoration: underline;
}

/* ----- Rocket Column ----- */
.rocket-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----- Rocket Image ----- */
.my-image {
  width: 500px;               /* big rocket */
  margin: 20px 0;
  image-rendering: pixelated;
}

/* ----- Responsive Layout ----- */
@media screen and (max-width: 800px) {
  .rocket-container {
    flex-direction: column;
    align-items: center;
  }

  .left-header, .right-header {
    text-align: center;
    margin: 10px 0;
  }

  .my-image {
    width: 200px; /* smaller on mobile */
  }
}
