@font-face {
  font-family: "font1";
  src: url("assets/CenturyStd-BookCondensed.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}


@font-face {
  font-family: "font1";
  src: url("assets/CenturyStd-BookCondensedIt.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}


@font-face {
  font-family: "font2";
  src: url("assets/CenturyStd-BoldCondensed.ttf") format("truetype");
  font-style: normal;
  font-weight: bold;
}


@font-face {
  font-family: "font2";
  src: url("assets/CenturyStd-BoldCondensedIt.ttf") format("truetype");
  font-style: italic;
  font-weight: bold;
}


html,
body {
  height: 100%;
  margin: 0;
}


body {
  font-family: "font2";
  text-align: center;
  font-size: 1.3em;
  display: flex;
  flex-direction: column;
  color: #1f8945;
  background-color: #ffeb97;
}


.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 0;
}


.artists {
  width: 85%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5%
}


.artist-card {
  width: 30%;
}


.artists img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}


footer {
  margin-top: auto;
  width: 100%;
}


.small {
  font-size: 0.8em;
  letter-spacing: 0.2px;
}


.artists img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}


.artist-card:hover img {
  filter: grayscale(0%);
}


.artist-name {
  margin-top: 8px;
  font-size: 0.75em;
  font-family: "font2";
  font-style: italic;
}


@media (max-width: 650px) {
  .artists {
    flex-direction: column;
    gap: 30px;
  }

  .artist-card {
    width: 100%;
  }
}