.solid-box  a {
  text-decoration: none; 
}

.video-wrapper {
  display: flex;
  justify-content: center;
}

.responsive-video {
  width: 100%;
  max-width: 50%;
}

@media (max-width: 768px) {
  .responsive-video {
    max-width: 100%;
  }
}

.hide-on-mobile {
  display: none;
}

@media screen and (min-width: 768px) {
  .hide-on-mobile {
    display: inline;
  }
}

.opacity-50 {
  opacity: 0.5;
}

.no-break {
  white-space: nowrap;
}

main img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

