* {
  box-sizing: border-box;
}

::selection {
  background: #5600eb;
}

body {
  background: center / cover no-repeat url("img/bkg.png");
  color: white;
  margin: 0;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 200;
}

main {
  background: hsla(240, 5%, 34%, 0.8);
  padding: 4vh;
}

h1 {
  font-family: 'Gravitas One', monospace;
  font-weight: 200;
  font-size: 12rem;
  margin: 0;
  color: salmon;
}

h2 {
  margin: 0;
  font-size: 10rem;
}

h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: 200;
}

h4 {
  font-family: 'Gravitas One', monospace;
  font-size: 1.8rem;
  color: salmon;
}

a {
  color: hsla(190, 99%, 40%, 1);
  font-weight: 600;
}

a:hover, a:active {
  color: hsla(190, 99%, 60%, 1);
}

p {
  font-size: 2rem;
  margin: 0;
}

.cover-container {
  max-width: 70vw;
}

.cursive {
  font-family: "Playwrite CA", cursive;
}

.flex-col { 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.girls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.girls .icon {
  cursor: default;
  font-size: 10rem;
}

.intro {
  font-family: "Playwrite CA", cursive;
  margin-top: 2.8rem;
  font-size: 1.8rem;
}

.interstitial {
  font-size: 4rem;
  margin: 4rem auto;  
}

.outward {
  font-size: 1.4rem;
}

.shows {
  margin: 2rem auto;
}

.show-info {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  color: white;
}

.show-info.sad {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: silver;
}

video {
  width: 100%;
  margin-top: 1rem;
  object-fit: cover;
}

.vid-div {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.vid-div small {
  font-size: 0.8rem;
}

.vids-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 960px) {
  h1 {
    font-size: 8rem;
  }


  .cover-container {
    max-width: 90vw;
  }

  .girls .icon {
    font-size: 6rem;
  }

  .name {
    font-size: 1.2rem;
  }

  .vids-wrapper {
    grid-template-columns: 1fr;
  }
}