#main {
  min-height: 100vh;
  position: relative;
}

#main .mobile {
  display: none;
}

/* --- Background Animations --- */
.bg_letters {
  width: 16%;
  height: 30vh;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  mix-blend-mode: multiply;
}

@media (max-width: 768px) {
  .bg_letters {
    width: 30%;
    height: 20vh;
  }
}

.s {
  background-image: url("../images/s.svg");
  animation: colorTransition 10s infinite;
  padding-left: 2.3%;
}

.y {
  background-image: url("../images/y.svg");
  animation: colorTransition 10s infinite;
}

.n {
  background-image: url("../images/n.svg");
  animation: colorTransition 10s infinite;
  padding-left: 1.4%;
}

.c {
  background-image: url("../images/c.svg");
  animation: colorTransition 10s infinite;
}

.svg-container {
  height: 226px;
  display: inline-block;
  justify-content: left;
}

/* --- Content Layout --- */
.eventname {
  --width: 104%;
  margin-left: calc((var(--width) - 100%) / 2 * -1);
  width: var(--width);

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.align-btm {
  position: absolute;
  bottom: 0;
}

.eventdetails_content {
  font-size: var(--fontsize-750);
  font-family: var(--sec-fontfam);
  font-weight: 700;
  color: var(--c-title);
  line-height: 0.75;
}

.eventdetails_sm {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.event-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.eventdetails_col {
  line-height: 1.2;
}

.eventdetails_venues {
  line-height: 0.8;
}

.eventdetails-gap {
  --v-gapheight: 18rem;
  height: var(--v-gapheight);
}

@media (min-width: 1600px) {
  .eventdetails-gap {
    --v-gapheight: 18rem;
  }
}

.names {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.names div {
  width: 20%;
  margin-left: 1rem;
  line-height: 1;
}
.names h5 {
  margin-block: 2rem;
}

.mobile div {
  margin-bottom: 2rem;
}
.mobile div:first-child {
  width: 110%;
  margin-left: -5%;
  font-size: 12rem;
  display: flex;
  columns: row;
  justify-content: space-between;
}
.mobile div:not(:first-child) {
  mix-blend-mode: multiply;
}

@media (max-width: 1200px) {
  #main .desktop {
    display: none;
  }
  #main .mobile {
    display: block;
  }
}
@media (max-width: 768px) {
  .eventdetails_content {
    font-size: var(--fontsize-700);
  }
}
