* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
  font-family: arial;
  user-select: none;
}
a {
  text-decoration: none;
}
body {
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  height: 100vh;
  /* background-color: rgb(59, 57, 59); */
  width: 100%;
  /* background-color: rgb(82, 80, 80); */
}
.container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.navbar {
  background-color: #000000;
  box-shadow: 0 0 9px 1px rgba(255, 255, 255, 0.3);
  height: 50px;
}

.wrapper {
  width: 100%;
  margin: auto;
}

/* @media (max-width: 952px) {
  label.logo {
    font-size: 30px;
    padding-left: 50px;
  }
  nav ul li a {
    font-size: 16px;
  }
} */
.mynav {
  position: sticky;
  top: 0;
}

.container::-webkit-scrollbar {
  display: none;
}

section {
  display: flex;
  align-content: center;
  width: 100%;
  min-height: 100vh;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  /* overflow-y: scroll; */
}
section {
  background-color: #000;
}
.main {
  background-color: rgb(7, 6, 6);

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 40px;
  position: relative;
  width: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(27, 23, 23);
  opacity: 0.1;
  display: flex;
  align-items: center;
}
.overlay #react {
  width: 200px;
  height: 150px;
  margin-top: 100px;
  margin-left: 400px;
  transition: 1s;
  animation: react 7s linear infinite;
}
.overlay #node {
  width: 100px;
  height: 100px;
  margin-top: -340px;
  transition: 5s;
  animation: react 7s linear infinite;
}
@keyframes react {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    /* transform: translateX(100px); */
  }
}

.main .left {
  flex-basis: 50%;
  flex-direction: column;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.main .left #btn {
  outline: none;
  border: none;
  background-color: rgb(9, 153, 153);
  color: #000;
  padding: 10px 30px;
  width: 150px;
  font-weight: bold;
  border-radius: 20px 20px 20px 0;
  font-size: 20px;
  margin-bottom: 10px;
  box-shadow: 0 0 9px 9px rgba(154, 211, 23, 0.3);
  z-index: 11;
  transition: 0.4s;
}

.main .left #btn:hover {
  background-color: rgb(154, 211, 23);
  cursor: pointer;
  color: black;
  box-shadow: 0 0 9px 9px rgba(163, 149, 149, 0.3);
}
.main .left span {
  color: rgb(154, 211, 23);
}
.main .left h1 {
  font-size: 60px;

  font-weight: 200;
}
.main .left h3 {
  font-size: 30px;
  font-weight: 100;
  margin: 10px 0;
  z-index: 111;
}

.main .left .contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
  height: 45px;
  justify-content: space-between;
  color: #000;
  font-size: 17px;
  z-index: 111;
}
.contact-info .myinfo {
  display: flex;
  align-items: center;
}

.contact-info i {
  margin: 5px;
}

.main .left .social {
  z-index: 111;
  margin-top: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 200px;
}
.main .left .social i {
  padding: 10px;
  font-size: 25px;
  border-radius: 50%;
  transition: 0.5s;
  margin-right: 10px;
}
.social i:hover {
  background-color: rgb(154, 211, 23);

  cursor: pointer;
  color: rgb(27, 37, 39);
  box-shadow: 0 0 9px 9px rgba(223, 205, 205, 0.3);

  animation: animate 0.4s linear;
}
@keyframes animate {
  from {
    transform: rotate(10deg);
  }
  to {
    transform: rotate(-10deg);
  }
}
.main .right {
  flex-basis: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #000;
}
.main .right .dark {
  width: 50px;
  height: 50px;
  z-index: 111;
}

.main .right img {
  margin-bottom: 30px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  box-shadow: 0 0 9px 9px rgba(154, 211, 23, 0.3);
}

.skills {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: row;
  background-color: #000;
}

.single__progresss {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.progress_info {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.single__progresss p {
  margin-top: 10px;
}
.skills .progressbar .progress {
  width: 300px;
  height: 10px;
  background-color: red;
  position: relative;
}
.skills .progressbar .progress .inner__progress {
  position: absolute;

  height: 100%;
  background-color: #fff;
}
.skills .img img {
  width: 500px;
  height: 400px;
  animation: skill 4s linear infinite;
}
@keyframes skill {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
.portfolio {
  background-color: #000;

  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio .main-container {
  width: 80%;
  min-height: 400px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.portfolio .cat {
  margin: 20px 0 10px 0;
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.portfolio .main-container .card {
  width: 170px;
  height: 200px;
  margin: 5px 0;
  border-radius: 5px;
  box-shadow: 0 0 9px 1px rgba(255, 254, 254, 0.3);
  transition: 0.3s;
  position: relative;
}
.portfolio h2 {
  margin-top: 60px;
}
.card i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: rgb(255, 255, 255);
  transition: 1s;
  padding: 5px 40px;
  border-radius: 10px;
  background-color: rgb(56, 56, 121);
  opacity: 0;
}
.card i:hover {
  background-color: rgb(100, 100, 248);
}

.card:hover {
  transform: translateY(-2px);
  cursor: pointer;
  box-shadow: 1 2 9px 1px rgba(255, 5, 5, 0.3);
}
.card:hover i {
  display: "flex";
  opacity: 1;
}
.card p {
  padding: 5px;
  color: #000;
}
.portfolio .main-container .card img {
  width: 100%;
  height: 85%;
  border-radius: 5px;
}
.portfolio .cat .btnn {
  outline: none;
  border: none;
  background-color: transparent;
  color: #fff;
  padding: 5px 10px;
  width: 100px;
  font-weight: bold;
  margin-bottom: 10px;

  z-index: 11;
  transition: 0.4s;
}
.cat .active {
  box-shadow: 0 0 9px 3px rgba(190, 255, 37, 0.3);
}
.cat .btnn:hover {
  box-shadow: 0 0 9px 3px rgba(190, 255, 37, 0.3);

  cursor: pointer;
  border: none;
}
.contact {
  background-color: #000;

  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact .upper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact .upper i {
  padding: 20px;
  border: 1px solid rgb(255, 252, 252);
  border-radius: 50%;
  transition: 0.4s;
}
.contact .upper i:hover {
  background-color: #fff;
  color: #000;
  cursor: pointer;
}
.contact .upper h4 {
  margin: 10px 0;
  font-weight: bold;
}
.contact .self {
  width: 200px;
  height: 200px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.3);
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0.3s;
}
.contact .self:hover {
  transform: translateY(-5px);
  background-color: rgb(161, 27, 45);
}
.lower {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
}
.form {
  width: 100%;
}
.form input,
textarea {
  width: 100%;
  padding: 5px 10px;
  margin: 5px 0;
  background: transparent;
  outline: none;
  border: 1px solid #fff;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.3);
  font-size: 18px;
}
.form input:focus,
textarea:focus {
  box-shadow: 0 0 9px 3px rgba(4, 126, 95, 0.3);
}
.form button {
  margin: 5px 0;
  width: 100%;
  outline: none;
  border: none;
  background-color: rgb(14, 160, 170, 0.3);
  padding: 10px 10px;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  border-radius: 3px;
  transition: 0.4s;
}
.form button:hover {
  background-color: rgba(4, 43, 46, 0.3);
  cursor: pointer;
}
.form button:active {
  background-color: rgb(154, 211, 23);
}
@media (max-width: 720px) {
  body {
    overflow-x: hidden;
  }
  .navbar {
  }

  .navbar ul a {
    padding: 5px;
    background-color: #000000;

    padding: 5px;
  }
  .navbar ul li a:hover {
    background-color: rgb(44, 44, 49);
    color: #000;
  }
  .main {
    flex-direction: column;
  }
  .main .right img {
    width: 150px;
    height: 150px;
    margin-top: 60px;
  }
  .main .left {
    order: 1;
    align-items: center;
    justify-content: center;
  }
  .about {
    flex-direction: column;
  }
  .about .about-left img {
    width: 250px;
    height: 230px;
    margin-top: 100px;
    margin-bottom: -30px;
    z-index: 12;
  }
  .about-right p {
    font-size: 12px;
  }
  .portfolio h2 {
    margin-top: 60px;
  }
  .portfolio .card {
    margin: 10px 0;
    width: 100%;
  }
  .skills {
    flex-direction: column;
  }
  .skills .img img {
    display: none;
  }
  .skills .progress .inner {
    width: 300px;
  }

  .contact .upper {
    /* flex-direction: column; */
  }
  .contact .upper .self {
    margin-top: 20px;
    width: 130px;
    font-size: 12px;
    height: 100px;
    align-items: center;
    justify-content: center;
  }
  .contact .self i {
    border: none;
    margin: 0;
  }
  .contact .self h4 {
    margin: 2px;
  }
}
