.container{
    display: block;
    width: auto;
    height: auto;
    /* border: 2px solid red; */
    padding-top: 65px;
    /* margin-left: 65px; */
    text-align: center;
}

.box{
    /* justify-content: space-around; */
    display: grid;
    margin: 30px 0px;
    /* grid-template-columns: repeat(3, auto); */
    height: 300px;
    overflow-x: hidden;
}
.playlists{
    display: block;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 210px;
    width: 210px;
    padding: 10px;
    margin: 10px;
    overflow: hidden;
}

.box::-webkit-scrollbar {
    display: none;
}

.btn {
    font-size: 23px;
    border: 0px;
    background-color: gray dotted;
    margin-bottom: 25px;
    margin-top: -8px;
    /* padding: 0px auto; */
    width: auto;
}

.ytbtn {
    border: 0px;
    background-color: white;
}

button>img{
    width: 200px;
    height: auto;
}

.fytbtn{
    width: 600px;
    display: absolute;
    margin: auto;
}

iframe{
    visibility: inherit;
    max-width: max-content;
}
a{
    visibility: inherit;
    max-width: max-content;
}

@media only screen and (max-width: 500px) {
    .box{
        grid-template-columns: repeat(1, auto);
        width: 100vw;
        overflow: hidden;
    }
    .container{
        margin-left: 30px;
    }
    .playlists{
        height: 45vw;
        width: 70vw;
    }
    iframe{
        width: 65vw;
        height: auto;
    }
}

@media only screen and (min-width: 500px) and (max-width: 768px)  {
    .box{
        width: 73vw;
        grid-template-columns: repeat(2, auto);
        overflow: hidden;
    }
    .container{
        margin-left: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1000px)  {
    .box{
        width: 73vw;
        grid-template-columns: repeat(2, auto);
    }
    .container{
        margin-left: 60px;
        max-width: max-content;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1325px)  {
    .box{
        width: 73vw;
        grid-template-columns: repeat(3, auto);
    }
    .container{
        margin-left: 65px;
        max-width: max-content;
    }
}

@media only screen and (min-width: 1326px) and (max-width: 2560px) {
    .box{
        width: 73vw;
        grid-template-columns: repeat(4, auto);
    }
    .container{
        margin-left: 65px;
        max-width: max-content;
    }
}

@media only screen and (min-width: 2560px) {
    .box{
        width: 73vw;
        grid-template-columns: repeat(5, auto);
    }
    .container{
        margin-left: 65px;
        max-width: max-content;
    }
}

.coming-soon{
    height: 150px;
    width: 200px;
    text-align: center;
    margin: auto;
    color: red;
}