/* h1 {
  font-family: "Varsity-Regular";
} */

a, a:hover {
  color: black;
  text-decoration: none;
}

.highlights {
  display: inline;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 1200px; /* Add maximum width */
  margin: 0 auto; /* Center the container */
  min-width: 0;
  padding: 0 1rem; /* Add padding instead of relying on margin: auto */
  gap: 1rem; /* Use gap instead of margin for consistent spacing */
}

.hl-item {
  position: absolute;
}

.highlights img:not(#mid),video:not(#mid) {
  width: 45%; /* Reduced from 40% */
  height: auto; /* Use auto to maintain aspect ratio */
  flex-shrink: 1;
  min-width: 45vw;
  margin: 5vw;
}

.l {
  left: 0%;
  margin-left: 0%;
}

.r {
  right: 0%;
  margin-right: 0%;
}

.css3-shadow {
  position: relative;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.css3-shadow:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  bottom: 0px;
  left: 10%;
  right: 10%;
  width: 80%;
  height: 50%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.events-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
}

.events-title h1 {
  font-size: 200%;
  margin-bottom: 0rem;
}

.events-title p {
  margin-top: 0.5rem;
}

.event-box {  
  background-color: #ff7d29;
  position: relative;
  z-index: 100vw;
}
.events-rundown {
  background-color: #4275c2;
}
/* .event {
  position: relative;
    z-index: 120vw;
}

.event h2 {
  font: var(--font-bold);
  font-size: 2rem; 
} */

/* .event * {
    margin: 0;
} */

.inline {
  display: flex;
  flex-direction: row;
}

.inactive {
  z-index: 1;
}

.hl-image {
  position: relative;
  z-index: 2;
}

.hl-text {
  position: absolute;
  z-index: 3;
  color: white;
  font-size: 18pt;
  text-align: center;
  width: 100%;
}

.footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--black-color);
  color: var(--white-color);
  margin-top: 2.5rem;
}