body {
  font-family: 'K2D', sans-serif;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

header {
  background: rgb(211, 12, 53);
  height: 60px;
  align-items: center;
  display: grid;
}

header input{
  border: none;
  padding: 15px;
  font-size: 16px;
  width: 40%;
  border-radius: 5px;
  margin-left: 35px
}

#basicContainer,
#popularContainer,
#featuredContainer {
  display: flex;
  width: 100%;
  overflow: auto;
}

.home .podcasts-container {
  border: 1px solid #f3f3f3;
  margin: 10px;
}

.home .podcasts-container figure {
  width: 200px;
}

.home .podcasts-container img {
  width: 100%;
}

.home .podcasts-container h4 {
  text-align: center;
}

.featuring {
  position: fixed;
  background-image: url('https://htmlcolorcodes.com/assets/images/html-color-codes-color-tutorials-hero-00e10b1f.jpg');
  background-size: cover;
  bottom: 0;
  height: 260px;
  display: none;
  width: 100%;
  overflow: auto;
}

.featuring .podcasts-container {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-rows: 180px 40px;
  padding: 0 20px;
  border: 1px solid rgba(0,0,0, .43);
}

.featuring .podcasts-container figure {
  width: 150px;
  margin: 0 15px;
}

.featuring .podcasts-container img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.featuring .podcasts-container h4 {
  height: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.enabled {
  display: flex !important;
}

.featuring-not-found {
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow: auto;
  background:#22242a;
  justify-content: center;
}

.featuring-not-found h3 {
  color: white;
}


.fadeIn {
  animation: 5000ms fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}