@media only screen and (max-width: 900px) {
  body {
    --headerHeight: 4rem;
  }

  .headertext {
    font-size: 1.7rem;
  }

  .menu li {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 750px) {
  .col2 {
    display: grid;
    gap: 0;
    grid-template-columns: auto;
    margin-left: -1rem;
    width:calc(100% + 2rem);
  }

  .colcell{
    border-radius: 0;
  }
}

@media only screen and (max-width: 550px) {
  .castmember {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .castmember img {
    margin: 0 0 1rem 0;
  }

  .castmember h3,
  .castmember p {
    text-align: center;
  }

  .castmember:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .castmember:nth-child(even) img {
    margin: 0 0 1rem 0;
  }

  .castmember:nth-child(even) h3,
  .castmember:nth-child(odd) h4 {
    text-align: center;
  }
}

@media (hover: none) and (pointer: coarse) {

  .vidthumblist{
    display: flex;
    overflow-x: auto;
    justify-content: start;
    width:100%;
    flex-wrap: nowrap;
  }

  .vidthumb{
    flex-shrink: 0;
    margin-right: 2px;
  }

}