body {
  width: 100vw;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  height: 100%;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    #1e0074 3.65%,
    #9700dd 22.92%,
    #c51bf9 43.82%,
    #ff6caa 69.27%,
    #e24b64 100%
  );
}

.playlist-container {
  width: 80%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Krona One", sans-serif;
}

.content h2 {
  margin: 60px 0;
  width: 100%;
  text-align: left;
  color: white;
}

.playlist {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.playlist iframe {
  width: 100%;
  max-width: 1000px;
}
.featured-playlist-container {
  width: 80%;
  max-width: 1000px;
  font-family: "Krona One", sans-serif;
}

.featured-playlist {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.box {
  width: 23%;
  height: 23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.box a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .box {
    width: 45%;
  }

  .content h2 {
    font-size: 18px;
  }
}
