body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
    background-image: url('images/space.png');
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the image */
  color: white;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #c22026;
  margin: 0;
}

.subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  margin-top: -10px;
}

.hero {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.launching {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

button {
  background-color: #c22026;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.info {
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.info-block {
  flex: 1 1 300px;
  margin: 1rem;
}


.gallery {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 1rem;
  text-align: center;
}

.gallery h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: #c22026;
}

.gallery-images {
  display: grid;
  padding-top: 1rem;
}

.gallery-images img {
  width: 100%;
  border-radius: 8px;
}

.footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1rem;
  line-height: 1.6;
}