/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url("../images/space_centre.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: black;
}


/* Style the foreground image and text container */
#container {
  position: relative;
  margin: 100px auto;
  width: 90%;
  max-width: 900px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#container p a {
  color: #666;
}

#container p a:hover {
  color: #00b0b9;
}

#foreground {
  margin-top: 20px;
  margin-bottom: 10px;
}

#foreground img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

h1 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 40px;
}



/* Media query for small screen sizes */
@media (max-width: 800px) {
  .button-container {
      flex-direction: column;
      align-items: center;
  }

  .button {
      margin-bottom: 10px;
      margin-left: 10px;
      margin-right: 10px; /* Add desired padding value */
  }
}
