@font-face {
  font-family: BrandonText;
  src: url(../fonts/BrandonTextWeb-Regular.woff2) format("woff2");
  font-weight: normal;
}
@font-face {
  font-family: BrandonText;
  src: url(../fonts/BrandonTextWeb-Bold.woff2) format("woff2");
  font-weight: bold;
}
@font-face {
  font-family: BrandonGrotesque;
  src: url(../fonts/BrandonGrotesqueWeb-Regular.woff2) format("woff2");
  font-weight: normal;
}
@font-face {
  font-family: BrandonGrotesque;
  src: url(../fonts/BrandonGrotesqueWeb-Bold.woff2) format("woff2");
  font-weight: bold;
}
@font-face {
  font-family: BrandonGrotesque;
  src: url(../fonts/BrandonGrotesqueWeb-Black.woff2) format("woff2");
  font-weight: 900;
}
html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 19px;
  }
}
body {
  background: #000;
  font-family: BrandonGrotesque, Comic Sans MS, sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
}

.error {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

header {
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 5rem;
}
header img {
  width: 12rem;
}

#gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  padding: 1rem;
}
#gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#gallery a {
  color: #fff;
  text-decoration: none;
}
#gallery .video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  gap: 1rem;
}
#gallery .video img {
  aspect-ratio: auto;
  height: 3rem;
  width: auto;
}

.pswp__img--placeholder {
  display: none;
}
