html {
  overflow: unset;
}

nav {
  background-color: rgb(20, 20, 20);
}


.artistContainer {
  width: 100%;
  color: white;
  /*  border-bottom: 1px white solid;*/
  /*  padding-bottom: 20px;*/
}

.artistContainer iframe {
  width: 100%;
  max-height: 400px;
  margin-top: 20px;
}

.artistContent {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: nowrap;
  margin-top: 20px;
}

.artistContainer img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.event a {
  color: white;
  text-decoration: none;
}

.artistName {
  font-size: 3em;
  font-weight: 400;
  margin-bottom: 0px;
  text-transform: uppercase;
  line-height: 0.9em;
  margin-top: 24px;
  width: fit-content;
}

.nameContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: -6px;
}

.nameFiller {
  background-image: url("../../img/dashpatternlarge.png");
  flex-grow: 1;
  margin-bottom: 13px;
  background-size: 4px 4px;
  margin-top: 22px;
  margin-bottom: 8px;
}


.artistBio {
  font-weight: 200;
  font-size: 1em;
  padding-right: 20px;
  font-family: 'Source Sans 3', sans-serif;
}

.artistBio p:first-of-type {
  margin-top: -2px;
}

.artistMain {
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  width: 100%;
}

.artistLinks {
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  width: 380px;
  gap: 10px;
}

.artistLinks h3 {
  font-size: 0.8em;
  margin: 0px;
  margin-top: 2px;
  text-align: left;
}

.artistLinks a {
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px white solid;
  padding-top: 12px;
  padding-bottom: 10px;
  color: white;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.artistLinks a:hover {
  color: rgb(20, 20, 20);
  background-color: white;
}

.linkFiller {
  margin-top: 10px;
  min-width: 100%;
  height: 100%;
  background-image: url("../../img/gridpattern2.png");
  background-size: 3px 3px;
  filter: invert(100%);
}

.artistBio figure {
  margin: 0px;
  width: 100%;
}

.artistBio .blockGallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.galleryImage img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(100%) contrast(120%);
  mix-blend-mode: screen;
  transition: filter 0.3s ease;
}

.galleryImage img:hover {
  filter: grayscale(0%) contrast(100%);
}


@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 1000px) {}

@media only screen and (max-width: 840px) {


  .artistName {
    font-size: 2em;
  }

  .nameFiller {
    margin-bottom: 6px;
  }

  h2 {
    font-size: 2em;
  }
}

@media only screen and (max-width: 720px) {

  .artistContent {
    flex-direction: column;
  }

  .artistLinks {
    width: 100%;
  }

  .linkFiller {
    display: none;
  }

  .artistBio {
    padding-right: 0px;
  }
}

@media only screen and (max-width: 500px) {}
