@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Roboto:wght@400;700&display=swap");
.card-bg {
  background-color: rgb(15, 23, 42);
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0.5rem 1rem;
  transition: all 0.5s ease-in-out 0s;
}
.card-bg:hover {
  background-color: rgb(2 13 30);
  box-shadow: rgba(1, 6, 28, 0.9) 0px 1px 5px 3px;
}
.hr-style {
  border: 2px solid rgb(180, 253, 255);
  width: 70px;
  box-shadow: rgb(195, 237, 243) 1px 1px 2px;
}
main {
  background-color: rgba(15, 23, 42, 0.98);
  background-image: url("../images/background.svg");
}
.g-font1 {
  font-family: Poppins, sans-serif;
}
.g-font2 {
  font-family: Roboto, sans-serif;
  color: rgb(223, 249, 251);
}
.header-bg {
  background-color: rgb(11, 17, 32);
}
.header-font-size {
  font-size: 18px;
}
header nav img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgb(34, 44, 68);
}
header nav ul li a {
  color: rgb(255, 255, 255);
}
.dropdown-bg {
  background-color: rgb(156, 166, 185);
}
.slider-bg {
  background-color: rgb(15, 23, 42);
  height: 90vh;
}
.slider-img {
  width: 100%;
}
.achievement-card {
  height: 100%;
}
.link-effect {
  display: inline-block;
  position: relative;
}
.link-effect::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: rgb(13, 110, 253);
  transition: all 0.4s ease-in-out 0s;
}
.link-effect:hover::after {
  width: 100%;
}
.pie-title-center {
  display: inline-block;
  position: relative;
  text-align: center;
}
.pie-value {
  display: block;
  position: absolute;
  font-size: 14px;
  height: 40px;
  top: 50%;
  left: 0px;
  right: 0px;
  margin-top: -20px;
  line-height: 40px;
}
.about-myself {
  height: 100%;
  cursor: pointer;
}
.about-myself:hover {
  background-color: rgb(11, 17, 32);
  box-shadow: rgba(139, 221, 247, 0.69) 0px 1px 5px;
}
.social-bg {
  background-color: rgb(15, 23, 42);
  height: 100%;
}
.social ul {
  list-style: none;
}
.social ul li {
  width: 50px;
  height: 45px;
  border: 1px solid rgb(255, 255, 255);
}
.social ul li:hover {
  border: 1px solid rgb(222, 43, 36);
}
.social ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}
footer {
  background-color: rgb(11, 17, 32);
}
@media only screen and (min-width: 426px) and (max-width: 768px) {
  .slider-img {
    width: 70%;
  }
  .header-font-size {
    font-size: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .header-img {
    width: 45px;
    height: 45px;
  }
  .header-font-size {
    font-size: 14px;
  }
  .header-button {
    font-size: 13px;
  }
}
