@import url("https://fonts.googleapis.com/css2?family=Strait&display=swap");



body {
  font-family: "Strait", sans-serif;
  margin: 0;
  padding: 20px;
  background-image: url("/static/galaxy_dark.jpg");
  background-repeat: no-repeat;
  background-size: auto;

}




/* Media query for smaller screens */
@media (max-width: 768px) {
  #explanation {
    max-width: 90%; /* Adjust maximum width for smaller screens */
  }
}


#explanation {
  margin: auto;
  max-width: 80%;
  color: #fff;
  font-size: 20px;
}

h1 {
  color: #fff;
  text-align: center;
  font-size: 45px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Subtle text shadow */
}
p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Subtle text shadow */
}

#image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.image-link img{
  display: inline-block;
  max-width: 100%;
  height: auto;
  border: none; /* Remove border */
  box-shadow: none; /* Remove box shadow */
  margin-bottom: 20px;
  border: solid 2px #fff;
}

img {
  max-width: 50%;
  height: auto;
  border: 3px solid #ddd;
  border-radius: 4px;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}
