html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hoopIntro {
    width: 75%;        /* or whatever width you like */
    margin: 0 auto;    /* ← this centers it horizontally */
    padding: 1rem;
    box-sizing: border-box;
}
  
/* optional: keep your text-left or justify as you prefer */
.hoopIntro p {
    font-size: clamp(.75rem, 1.75vw, 1.25rem);
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: bold;
    text-align: center;
}

.videoContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    padding-bottom: 2.5vh;
}
  
.videoContainer iframe {
    flex: 0 0 calc(50% - 0.5rem);
    width: 100%;
    height: 43vh;
    border-radius: 0.5rem;
    box-shadow:
      /* subtle outer glow */
      0 0 10px 4px rgba(0, 0, 0, 0.4),
      /* very light inner glow */
      inset 0 0 5px rgba(0, 0, 0, 0.3);
}
  
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: white;
    padding: 2rem 0; /* increased vertical padding to lower text */
    margin-top: auto;
}

footer p {
    margin: 0;
    padding-top: 0.5rem; /* extra space above copyright text */
}
  
#logoPic {
    border-radius: 50%;
}