.container a{
  color: #fff;
}
.center{
  font-weight: 800;
  color: #fff;
  text-align: center;
  border-bottom: 2px solid #fff;
  margin-bottom: 15px;
}
.container{
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  background-image: linear-gradient(38deg, #6654EC 0%, #54CAF9 64%);
  padding: 35px 0;
}
.episode{
  display: grid;
  grid-template-columns: 0.9fr 3.1fr;
  position: relative;
}
.episode__number{
  font-size: 10vw;
  font-weight: 600;
  color: #fff;
  padding: 85px 0 10px 0;
  position: sticky;
  top: 0;
  text-align: center;
  height: calc(10vw + 20px);
  transition: all 0.2s ease-in;
}
.episode__content{
  padding: 0 45px 15px 0;
}
.episode__content .story{
  line-height: 26px;
}
.episode__content .story p{
  color: #fff;
  text-align: left;
}
/*----Media-----------------------------------------------------*/
@media (max-width: 600px){
  .episode__content{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px){
  .center{
    font-size: 28px;
  }
  .episode__content .story{
    font-size: 15px;
  }
}
@media (max-width: 480px){
  .center{
    font-size: 26px;
  }
}