 * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Poppins', sans-serif;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      background-color: black;
      color: #fff;
      text-align: center;
      overflow: hidden; /* this prevents a scrollbar in a browser, but by flexing the size of the main logo it seems to work. */
    }

    .bodydiv {
        background: linear-gradient(135deg, #1d1d1d, #3c1f4a);
        width: 100%;
        padding: 60px;
        margin-top: 0;
    }
/* I added the "logo" class to work on having the main logo rezize to prevent overflow */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}   
 /* This is what I got from AI to create the three logo situation I wanted, seems to work */
.mini-logos {
  /* Positions the three mini logos horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Adjust the space between mini logos */
  margin-top: 20px; /* Adjust the space between the main and mini logos */
  flex-wrap: wrap; /* Ensures logos wrap on smaller screens */
  margin-bottom: 20px; /* This allowed me to put some space under the logos before text started */
}

.mini-logos img {
  /* Sizes the mini logos to be one-third the width of the main logo */
  width: 100px; /* 300px (main logo width) / 3 */
  height: auto;
  max-width: 100%; /* Ensures images don't exceed their parent container */
}

    h1 {
      font-size: clamp(24px, 4vw, 48px);
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    p {
      font-size: 1.2rem;
      margin-bottom: 20px;
      opacity: 0.9;
    }

    a {
      color:#fff;
    }

    img {
        width: 25vw;
        border-radius: 10px;
    }

    /* Floating music notes */
    .note {
      position: absolute;
      font-size: 2rem;
      animation: float 8s linear infinite;
      opacity: 0.6;
    }

    @keyframes float {
      0% { transform: translateY(100vh) rotate(0deg); }
      100% { transform: translateY(-10vh) rotate(360deg); }
    }

footer {
  margin-top: 50px;
  border-top: 1px solid #777;
  background-color: black;
  width: 100%;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
}
.footer {
font-family: 'Poppins', sans-serif;
font-size: .75rem;
font-style: italic;
}
.hdlnk {
text-decoration: none;
font-family: 'Poppins', sans-serif;
font-size: .75rem;
font-style: italic;
}