@charset "UTF-8";

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border: thin solid rgb(255, 255, 255);
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .equal-height-row {
    display: flex;
    flex-wrap: wrap; /* Ensure wrapping for smaller screens */
  }
  .equal-height-row > .col-lg-8,
  .equal-height-row > .col-lg-4 {
    display: flex;
    flex-direction: column;
  }
  .button-container button {
    flex-grow: 1; /* Make each button expand to fill available space */
  }

.textBox {
    width: 100%;
    border: thin solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

body {
  background-color: rgb(22, 22, 34);
}

.sponsorBanner {
  border: thin solid rgb(255, 255, 255);
}




