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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
/* all similar content styling codes */
section {
  padding: 100px 0;
}
.skills .maximum-width {
  background: rgb(216, 214, 214);
  border-radius: 10px;
  height: 500px;
  width: 80%;
  padding: 0 80px;
  margin: auto;
}
header {
  padding: 15px 10%;
  opacity: 0.9;
}
.logo i {
  font-size: 38px;
  background: -webkit-linear-gradient(45deg, #29fd53, #023d0e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo span {
  font-size: 1.7rem;
}
.skills {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
    url(../images/school.jpg);
  height: 90vh;
  color: rgb(0, 0, 0);
  min-height: 500px;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
}

.skills .skills-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
section .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}
section .title::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 180px;
  height: 3px;
  background: #111;
  transform: translateX(-50%);
}
section .title::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  font-size: 20px;
  color: rgb(0, 127, 34);
  padding: 0 5px;
  background: rgb(216, 214, 214);
  transform: translateX(-50%);
}

/* skills section styling */

.skills .title::after {
  content: "what i know";
}
.skills .skills-content .column {
  width: calc(50% - 30px);
}
.skills .skills-content .left .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.skills .skills-content .left p {
  color: rgb(5, 0, 0);
  text-align: justify;
}
.skills .skills-content .left .text {
  font-size: 30px;
  color: green;
}
.skills .skills-content .left p .skills .skills-content .right .bars {
  margin-bottom: 20px;
}
.skills .skills-content .right .info {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  justify-content: space-between;
}
.skills .skills-content .right span {
  font-weight: 500;
  font-size: 18px;
}
.skills .skills-content .right .line {
  height: 5px;
  width: 100%;
  background: white;
  position: relative;
}

.skills .skills-content .right .line::before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(255, 215, 13);
}
.skills-content .right .html::before {
  width: 90%;
}
.skills-content .right .css::before {
  width: 60%;
}
.skills-content .right .cplus::before {
  width: 80%;
}
.skills-content .right .js::before {
  width: 50%;
}
.skills-content .right .cs::before {
  width: 70%;
}

/* RESPONSIVE FEATURE */
@media (max-width: 1290px) {
  .skills {
    height: 125vh;
  }
  .skills .maximum-width {
    height: 725px;
  }
  .skills .skills-content .column {
    width: 100%;
    margin-bottom: 35px;
  }
}
@media (max-width: 1090px) {
  header {
    padding: 14px 2%;
    transition: 0.2s;
  }

  .skills {
    height: 125vh;
  }
  .skills .maximum-width {
    height: 725px;
  }
  .skills .skills-content .column {
    width: 100%;
    margin-bottom: 35px;
  }
}

@media (max-width: 760px) {
  .skills {
    height: 135vh;
  }
  .skills .maximum-width {
    height: 790px;
  }
}

@media (max-width: 690px) {
  .skills {
    height: 140vh;
  }
  .skills .maximum-width {
    height: 850px;
  }
  .maximum-width {
    padding: 0 23px;
  }
}

@media (max-width: 590px) {
  .skills {
    height: 150vh;
  }
  .skills .title::after {
    font-size: 15px;
  }
  .skills .maximum-width {
    height: 880px;
  }
  .skills .skills-content .left .text {
    font-size: 19px;
  }
  .skills .skills-content .left p {
    font-size: 10px;
  }
}

@media (max-width: 500px) {
  .skills {
    height: 130vh;
  }
  .skills .title::after {
    font-size: 15px;
  }
  .skills .maximum-width {
    height: 100vh;
  }
  .skills .skills-content .left .text {
    font-size: 19px;
  }
}

@media (max-width: 470px) {
  .skills {
    height: 160vh;
  }
  .skills .maximum-width {
    height: 120vh;
  }
}

@media (max-width: 425px) {
  .skills {
    height: 105vh;
  }
  .skills .maximum-width {
    height: 90vh;
  }
}
