/* Space-themed Fade-in effect */
#desc-1 {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0;
  background: #0d1b35;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(163,247,255,0.08);
  border-bottom: 1px solid rgba(163,247,255,0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

#desc-1.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Text container */
#text-container-1 {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 8px;
  padding: 24px;
  background: rgba(30, 40, 60, 0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Headline styling */
#desc-1 h1 {
  width: 100%;
  font-size: 2.7rem;
  font-family: 'Orbitron', Arial, sans-serif;
  color: #7aa7d8;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Paragraph styling */
#desc-1 p {
  width: 100%;
  margin-top: 12px;
  font-size: 1.5rem;
  font-family: 'Roboto Mono', Arial, sans-serif;
  color: #d9e8f7;
  text-align: left;
  text-shadow: none;
}

/* Image container */
#image-1-container {
  width: 50%;
  display: block;
  margin: 20px 0;
  border-radius: 12px;
  background: rgba(30, 40, 60, 0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Image styling */
#image-1 {
  width: 320px;
  display: block;
  margin-left: 24px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Space-themed Fade-in effect */
#desc-2 {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  margin: 0;
  background: #1a1a35;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(163,247,255,0.08);
  border-bottom: 1px solid rgba(163,247,255,0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

#desc-2.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Text container */
#text-container-2 {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 8px;
  padding: 24px;
  background: rgba(40, 30, 60, 0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Headline styling */
#desc-2 h1 {
  width: 100%;
  font-size: 2.7rem;
  font-family: 'Orbitron', Arial, sans-serif;
  color: #d9a7d8;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Paragraph styling */
#desc-2 p {
  width: 100%;
  margin-top: 12px;
  font-size: 1.5rem;
  font-family: 'Roboto Mono', Arial, sans-serif;
  color: #f0d9f7;
  text-align: left;
  text-shadow: none;
}

/* Image container */
#image-2-container {
  width: 50%;
  display: block;
  margin: 20px 0;
  border-radius: 12px;
  background: rgba(50, 30, 70, 0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Image styling */
#image-2 {
  width: 320px;
  display: block;
  margin-left: 24px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}