/* with Background image */
body {
  margin-top: 8%;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: url('../allImages/TURTLEACADEMYImages/mario sky.jpg') no-repeat top center;
  background-size: 100% auto;
  background-attachment: scroll;
  color: white;
}

/* Introduction Box */
.intro-box {
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  max-width: 600px;
  margin: 50px auto 30px auto;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Logo Showcase */
.logo-showcase {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  flex-wrap: wrap; /* So it works on smaller screens */
}

.logo-img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.logo-description {
  max-height: 300px;   /* Allow scroll if text overflows */
  overflow-y: auto;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 1.1em;
  background: rgba(0,0,0,0.5);
  color: white;
  line-height: 1.5;
  width: 300px;         /* Match image width */
}

@media (max-width: 480px) {
  body {
    background-repeat: repeat-y;
    background-size: contain;
    background-position: top center;
  }
}

