/* font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* reset style */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #9F9F9F;   
}
.container{
    width: 870px;
    margin: 0 auto;
}

.section-title{
    color: #562EFF;
    font-size: 24px;
    margin-bottom: 40px;
   
}
/* Header Style Start */
header{
    background-color: #562EFF;
    width: 100%;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 94px;
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;

}

.logo img{
    width: 40px;
}

.logo a{
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    margin-left: 15px;
    font-weight: bold;
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a{
    text-decoration: none;
    color: #fff;
    padding-right: 36px;
}

/* Header style end */

/* Top player and top blog style start */
.top-players{
    background-color: #fff;
    padding: 33px;
    margin-top: 36px;
    border-radius: 5px;
}

.players{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-row-gap: 29px;
}
.player{
    display: flex;
    align-items: center;
}
.player img{
    width: 56px;
    height: 56px;
}
.player-name{
    margin-left: 16px;
    font-size: 18px;
}

hr{
    border: 1px solid #D1D1D1;
    width: 807px;
    margin: 30px 0;
}

.blogs{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.blog{
    display: flex;
    align-items: center;
}
.thumbline img{
    Width: 177px;
    height: 117px;
}
.blog-title{
    margin-left: 16px;
}
.blog-title h3{
    font-size: 20px;
    line-height: 34px;

}

.author a{
    text-decoration: none;
    color: #562EFF;
}
/* Top player and top blog style end */

/* course section style start */
.latest-course{
    background-color: #fff;
    border-radius: 5px;
    padding: 33px;
    margin-top: 21px;
}
.courses{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    
}
.course-banner img{
    width: 224px;
    height: 104px;
}
.course-title{
    margin-top: 20px;
}
.course-author{
    color: #ED6B4F;
}
.course-details{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.rating .fas{
    color: #AEAEAE;
}
.rating .filled{
    color: #FFC014;
    ;
}
.rating span{
    margin-left: 10px;
}
.duration{
    margin-left: 30px;
    background-color: #FFE4E8;
    color: #FF4A60;
    border-radius: 15px;
    padding: 5px;
}
/* course section style end */