body {
  background-color: rgb(206, 206, 206);
}

#cv-page {
  width: 100%;
  height: 100vh;
  margin: 2% 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cv {
  min-width: 800px;
  width: 70%;
  height: 700px;
  background-color: #424242;
  border-radius: 30px;
}

#cv-left {
  float: left;
  height: 100%;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#name {
  color: white;
  font-weight: 500;
  font-size: 25px;
  font-family: "Roboto";
}

#job {
  color: gray;
  font-family: "Roboto";
  margin-top: 15px;
}

#profile-image {
  border-radius: 50%;
  width: 170px;
  box-shadow: 0 0 0 4px white;
  margin-top: 70px;
  margin-bottom: 40px;
}

#socials {
  margin-top: 10px;
}

.social {
  float: left;
  margin: 8px;
}

.social > a > img {
  width: 17px;
}

#cv-right {
  background-color: #1c1c1c;
  float: right;
  width: 67%;
  border-radius: 30px;
  height: 100%;
  color: white;
  padding: 0 10px;
}

#cv-right-text {
  color: white;
  height: 97%;
  margin: 10px;
  overflow-y: scroll;
  direction: rtl;
  word-wrap: break-word;
  font-family: "Vazir";
}

#skills {
  width: 80%;
  margin-left: 15px;
  margin-top: 30px;
}

#skills-shower {
  background-color: #1c1c1c;
  border-radius: 6px;
  box-shadow: 0 0 14px 4px rgb(56, 56, 56);
  padding: 10px;
}

.skill {
  width: 80%;
  padding: 8px;
}

.skill-name {
  color: white;
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  width: 80px;
}

.skill-presence {
  color: rgb(175, 175, 175);
  font-weight: 400;
  font-size: 11px;
  display: inline-block;
  width: 20px;
}

.progress-handler {
  width: 50%;
  display: inline-block;
}

.skill-progress {
  display: block;
  background-color: rgb(111, 202, 103);
  width: 1%;
  height: 10px;
  display: inline-block;
  margin-left: 10px;
  border-radius: 50px;
  transition: all 1s ease-in-out;
}

.skill:not(:last-child) {
  border-bottom: 1px solid gray;
}

#cv-right-text::-webkit-scrollbar {
  width: 2px;
}

#cv-right-text::-webkit-scrollbar-thumb {
  background: rgb(146, 146, 146);
  border-radius: 10px;
}

#backgroundP {
  position: fixed;
  z-index: -1;
  top: 0;
  height: 100%;
  width: 95%;
}
