*{
    margin: 0;
    padding: 0;
}
body{
    box-sizing: border-box;
    background-color: #091227;
    display: flex;
    align-items: center;
    justify-content: center;
}
body a{
    text-decoration: none;
}

main{
    border: 4px solid green;
    border-radius: 6px;
    width: 40%;
    margin: 20px 0px;
    padding: 14px 20px;
}

.top_div{
    display: flex;
    /* border: 2px solid black; */
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.top_div div{
    /* border: 2px solid red; */
}
.top_div img{
    display: flex;
    width: 20px;
    filter: invert(100%);
}

.section1, .section2{
    /* border: 2px solid black; */
    width: 100%;
    margin: 20px 0px;
}
.section1 .rec_songs, .section2 .rec_songs{
    margin: 5px 0px;
    display: flex;
    overflow-x: scroll;
}
.section1 .rec_songs::-webkit-scrollbar, .section2 .rec_songs::-webkit-scrollbar{
    height: 10px;
}
.section1 .rec_songs::-webkit-scrollbar-track, .section2 .rec_songs::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
    border-radius: 4px;
}
.section1 .rec_songs::-webkit-scrollbar-thumb, .section2 .rec_songs::-webkit-scrollbar-thumb  {
    background: #555; /* Scrollbar thumb color */
    border-radius: 4px;
}

.section1 h3, .section2 h3{
    color: white;
    font-size: large;
}
.section1 img, .section2 img{
    border-radius: 10px;
    width: 200px;
    height: 200px;
}
.section1 .firstsong, .secondsong, .thirdsong, .fourthsong, .fifthsong, .sixthsong, .section2 .firstsong, .secondsong, .thirdsong, .fourthsong, .fifthsong, .sixthsong{
    margin: 0px 8px 0px 0px;
}
.section1 .imagediv, .title, .artist, .section2 .imagediv, .title, .artist{
    display: flex;
    align-items: center;
    margin: 5px 0px;
    width: fit-content;
}
.section1 h2, h4, .section2 h2, h4{
    color: white;
    font-size: medium;
}