body {
  background-color: #eef5ff;
  user-select: none;
  font-family: "poppins", sans-serif;
}

/* fonts */

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* nav */

.sajjad-nav {
  display: flex;
  margin: 10px;
  margin-bottom: 30px;
  border-radius: 20px;
  border: 1px solid #888;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.brand img {
  width: 30px;
  height: 30px;
  margin-right: 7px;
  border-radius: 50%;
  vertical-align: middle;
}

.logo {
  font-size: 25px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

.accent {
  color: #444;
  margin-left: 5px;
}

.tagline {
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .sajjad-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  .tagline {
    font-size: 0.9rem;
  }
}

.comment {
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: center;
  margin: 100px auto;
  border-radius: 10px;
  width: 700px;
  height: auto;
  border: 1px solid #c7c7c7;
  background-color: #fffafa;
}

.comment-progress-bar {
  width: 100%;
  height: 3px;
  border: none;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: #212122;
  animation: Grow 4s linear infinite;
}

@keyframes Grow {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.comment-text {
  font-size: 14px;
  font-weight: 300;
  color: #444;
}

.comment-top-left img {
  width: 60px;
  height: 60px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  vertical-align: middle;
}

.comment-top {
  display: flex;
  justify-content: start;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}

.comment-top-right {
  display: flex;
  flex-direction: column;
}

.name {
  font-size: 18px;
  font-weight: bold;
}

.roll {
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.stars img {
  width: 15px;
  height: 15px;
}

.stars span {
  font-size: 12px;
  font-weight: 400;
  color: #111;
}

@media (max-width: 768px) {
  .comment {
    width: 80%;
  }
}
