/* common styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f1ff;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    background-color: #ffffff;
    width: 870px;
    padding: 30px;
    margin-top: 21px;
    border-radius: 5px;
}

hr {
    border: 1px solid #d1d1d1;
    margin-bottom: 27px;
}

/* top player and top blog section start */

/* top player */
.top-players {
    margin-bottom: 21px;
}

.section-title {
    font-size: 24px;
    color: #532eff;
    margin-top: 3px;
}

.players {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
}

.player {
    display: flex;
    align-items: center;
}

.player img {
    width: 56px;
    height: 56px;
}

.player-name {
    margin-left: 16px;
    font-size: 18px;
}

/* top blog */
.blogs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
}

.blog {
    display: flex;
}

.thumbnail img {
    width: 177px;
    height: 117px;
}

.blog-info {
    margin-left: 16px;
}

.blog-title {
    font-size: 20px;
}

.blog-author {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #9f9f9f;
}

.blog-author a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    font-size: 16px;
    color: #562eff;
}

/* top player and top blog section end */

/* letest courses start */
.courses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
}
.course-banner img {
    width: 224px;
    height: 104px;
}
.course-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ratings i {
    font-size: 12px;
    color: #ffc014;
}
.ratings i:nth-child(5) {
    color: #aeaeae;
}
/* letest courses end */
