/* top players style */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");
body {
  font-family: "Poppins", sans-serif;
  background-color: #f3f1ff;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #562eff;
  width: 1140px;
  height: 94px;
  padding: 5px;
  
}
.logo{
    width: 40px;
    height: 51px;
    margin-right: 16px;
}
.profile{
    width: 51px;
    height: 51px;
    margin-left: 15px;
}

.nav-left, .nav-right{
    display: flex;
    color: #ffffff;
}
.nav-right ul li{
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}
 a {
  text-decoration: none;
  color: #ffffff;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container {
  background-color: #ffffff;
  width: 870px;
  padding: 30px;
  margin-top: 21px;
  border-radius: 5px;
}
.section-title {
  color: #562eff;
  font-size: 24px;
  margin-top: 3px;
}
.top-players {
  margin-bottom: 30px;
}
.players {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* grid-template-columns: 1fr 1fr 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;
  margin-bottom: 20px;
}
/* top blogs style */
.blogs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 26px;
}
.blog {
  display: flex;
}
.blog-info {
  margin-left: 16px;
}
.blog-title {
  font-size: 20px;
}
.blog-author {
  color: #9f9f9f;
}
.blog-author a {
  text-decoration: none;
  color: #562eff;
  font-size: 16px;
}
.thumnail img {
  width: 177px;
  /* height: 177px; */
}
/* courses style */
.courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 24px;
}
.course {
  width: 253px;
}
.course .course-banner img {
  width: 224px;
  height: 104px;
}
.fa-star.filled {
  color: #ffc014;
}
.fa-star.empty {
  color: #aeaeae;
}
.course-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fa-star {
  font-size: 12px;
}
