@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

.outerdiv {
  background-color: #333;
  overflow: hidden;
}


.outerdiv a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  /* display: flex;
  justify-content: center; */
}


.outerdiv a:hover {
  background-color: #ddd;
  color: black;
}

.hi2 h1 {
  font-size: 24px;
  color: #ffffff;
}


.hi2 .writer {
  font-size: 18px;
  color: #dedada;
}

#change {
  color: #007bff; 
  font-weight: bold;
}

.outerdiv a.active {
  background-color: #04AA6D;
  color: white;
}

#change{
  color: #0ef;
  font-size: 18px;
}
.outerdiv .icon {
  display: none;
}

@media screen and (max-width: 800px) {
  .outerdiv a:not(:first-child) {display: none;}
  .outerdiv a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 800px) {
  .outerdiv.responsive {position: relative;}
  .outerdiv.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .outerdiv.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-repeat: repeat;
  background-size: cover;
  margin: 0;
  padding: 0;
  background: rgb(1, 11, 13);
  background: #00203FFF;
}

.container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  height: auto;
  background-color: transparent;
  border-bottom: rgb(248, 247, 249);
  position: fixed;
  top: 0px;
  font-size: 30px;
  background-color: #f9f5f5;
}



.container a {
  color: rgb(247, 244, 244);
  font-size: 17px;
  font-weight: bold;
  /* border-radius: 12px; */
  padding: 5px 5px 5px 5px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font: bold;
  background-color: transparent;
  margin-bottom: 0px;
}

.photo img{
height: 30px;
background: transparent;
animation: name 2s ease-in-out infinite;
position: relative;
top: 0px;
}
@keyframes name{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.container a:hover{
  background-color: rgb(152, 197, 241);
}

.parent {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 60px;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

#myname {
  font-size: 15px;
  font-weight: bold;
  color: rgb(233, 227, 227);
  text-transform: uppercase;
  text-align: center;
  margin-top: 150px;
}

.hi2 , .writer {
  margin-bottom: 18px;
  color: #fff;
  font-family: 'Poppins';
  margin-top: 10px;
  font-size: 30px;
  animation: typing 2s ease-in-out infinite;
  white-space: nowrap;
  overflow: hidden;
}
.writer{
  font-size: 20px;
}


div span {
  font-size: 17px;
  color: rgb(174, 168, 168);
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

.hello {
  color: white;
  font-size: 50px;
  border-radius: 17px;
}

.everyone {
  color: rgb(253, 249, 249);
}

.developer {
  font-size: 15px;
}

.image {
  margin-top: 20px;
}

.image {
  background-repeat: no-repeat;
  filter: blur(0.3px);
  width: 300px;
  height: 300px;
  margin-top: 50px;
  border-radius: 50%;
  background-image: url(profile-pic\ \(1\).png);
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.portfolio {
  text-transform: uppercase;
  font-size: 30px;
  color: orange;
  font-family: 'Merriweather', serif;
  background-color: rgb(253, 249, 249);
  border-radius: 9px;
}

#learn {
  background-color: transparent;
  font-size: 15px;
  border: 2px solid white;
  color: white;
  border-radius: 17px;
  padding: 2px 2px 2px 2px;

}

#btn {
  display: flex;
  justify-content: center;
}


#learn {
  font-family: 'Poppins', sans-serif;
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(243, 237, 237);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-top: 150px;
}

#learn:before {
  content: "";
  background: linear-gradient(45deg,
      #ff0000,
      #ff7300,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(6px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowinglearn 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowinglearn {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

#learn:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}

#myTopnav .about,
#myTopnav .skills,
#myTopnav ,
#myTopnav .project,
#myTopnav .contact {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  margin-top: 0px;
}

.skills.socialmedia{
  height: 2px;

}
a.about,a.skills,a.project{
  margin-top: 10px;
}


@media(max-width:700px){
  .socialmedia{
    width: 100%;
  }
}
@media(max-width:400px){
.about-img{
  position: fixed;
}
}
.about-wrapper{
  height: fit-content;
}
.about-left{
    background-color:transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    color:#fff
}
.about-left-content > div{
    background: transparent;
    padding: 2rem 2rem 2rem 2rem;
    text-align: center;
    border-radius: 12px 12px 0 0;
}
.about-left-content{
    /* box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39); */
    border-radius: 12px;
    width:80%;
}
.about-img img{
    display: block;
    width: 200px;
    border: 2px double black;
   border-radius: 50%;  
}
.about-img{
    width: 200px;
    height: 200px;
    overflow: hidden;
}
@media(max-width:700px){
  .about-img{
    margin-left: 50px;
  }
}
.shadow{
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.about-left-content h2{
    font-size: 17px;
    margin: 2.2rem 0 0.6rem 0;
    line-height: 0.5;
    padding-bottom: 23px;
    font-family: 'Poppins' ;
    font-weight: lighter;
    border-bottom: 2px solid #080808;
}
.about-left-content h3{
    text-transform: uppercase;
    color: rgb(251, 252, 254);
    font-family: 'Poppins' ;
    margin-top: 1.2rem;
    font-size: 17px;
    line-height: 1.3;
    
}
#about-wrapper{
  margin-top: 200px;
}
.icons{
    background: #12192c;
    display: flex;
    justify-content: center;
    padding: 0.8rem 0;
    border-radius: 0 0 12px 12px;
}
.icons li{
    list-style-type: none;
    background: transparent;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.icons li:hover{
    background: #edffec;
    color: #000;
}

#myskills {
  margin-top: 220px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  height: 265px;
  height: fit-content;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.manage {
  margin-top: 15px;
  font-size: 22px;
  padding: 20px 30px 15px 15px;
  color: #f8f4f4;
}

ul li {
  list-style-type: none;
  font-family: 'Poppins' ;
  color: white;
  font-weight: bold;
  line-height: 1.6;

}

.service2 {
  font-size: 19px;
  color: rgb(247, 242, 242);
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  border-bottom: 2px solid;

}

.service {
  border-radius: 30px;
  padding: 15px 30px 15px 15px;
}


.skill
{
  
  list-style: none;
  width: 500px;
  margin: 60px auto;
  color: #f0eded;
  padding: 10px;
  font-family:'Poppins' ;
  font-weight: bold;
  /* box-shadow:0 14px 28px rgb(0, 0, 0,0.25), 0 10px 10px rgba(0,0,0,0.22); */

}
.skill li{
  margin:30px 0;
  padding: 10px;
}
.bar{
  background: #353b48;
  display: block;
  height: 20px;
  margin-top: 10px;
  border: 1px solid;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(.25,.8.25,1);
  box-shadow:0 1px 3px rgb(0, 0, 0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.bar:hover{
  box-shadow:0 14px 28px rgb(0, 0, 0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.bar span{
  height: 20px;
  float: left;
  background: linear-gradient(135deg, rgba(236,0,140,1)0%,rgba(252,103,1)100%);
}
.html{
  width: 70%;
  animation: html 3s;
}
.css{
  width: 60%;
  animation: css 3s;
}
.javascript{
  width: 50%;
  animation: java 3s;
}
.ps{
  width: 80%;
  animation: ps 3s;
}
.excel{
  width: 70%;
  animation: excel 3s;
}
@keyframes html{
  0%{
    width: 0%;
  }
  100%{
    width: 70%;
  }
}
@keyframes css{
  0%{
    width: 0%;
  }
  100%{
    width: 60%;
  }
}
@keyframes java{
  0%{
    width: 0%;
  }
  100%{
    width: 50%;
  }
}
@keyframes ps{
  0%{
    width: 0%;
  }
  100%{
    width: 80%;
  }
}
@keyframes excel{
  0%{
    width: 0%;
  }
  100%{
    width: 70%;
  }
}
h1{
  text-align: center;
}
h3{
  margin: 5px;
}
@media screen and (max-width: 700px) {
  body .shadow ,#myTopnav {
    font-size: 14px;
    width: 100%;
  }
  .skill{
    width: 300px;
  }
}
.font12{
  font-size: 30px;
}



div label{
  font-size: 30px;
 color: rgb(246, 239, 239);
 font-weight: bold;
 font-family: 'Poppins';
 display: flex;
justify-content: center;
margin-top:200px;
}
.wrapper{
  width: 1170px;
  margin: 5% auto;
}
.wrapper label{
 font-size: 17px;
 color: rgb(250, 245, 245);
}
.single-service{
  position: relative;
  width: 31%;
  height: 320px;
  border: 1px solid;
  border-radius: 12px;
  /* background: #fff; */
  box-sizing: border-box;
  padding: 0 15px;
  overflow: hidden;
  float: left;
  margin: 0 10px;
  text-align: center;
}
.line{
  width: 150px;
  height: 3px;
  /* background: #fff; */
  margin: 0 auto 60px auto;
}
.single-service p{
  color: #f5f0f0;
  font-size: 14px;
  font-family: 'Poppins';
  line-height: 2;
  font-weight: bold;
}
.single-service h3{
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fbf6f6;
  font-family: 'Poppins';
  line-height: 1;
}
.social{
  width: 60px;
  height: 60px;
  background: #262626;
  border-radius: 50%;
  margin: 5% auto;
}
.social i{
  font-size: 30px;
  padding: 15px;
  color: #fff;
}
.single-service span{
  position: absolute;
  top:0;
  left: -110%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

@media(max-width:1144px){
  .wrapper{
    width: 90%;
    line-height: 0;
    font-size: 10px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
  }
  .single-service{
    width: 100%;
    margin-bottom: 10px;
    font-size: 10px;
    height: 440px;
  }
  .wrapper h2{
    font-family: 30px;
  }
  .skill p{
    margin-top: 30px;
  }
  .about-img{
    margin-left: -19px;
  }
  
}


@media screen and  (max-width:700px)
{
  /* .contactme{
    float: left;
    margin-top: 100px;
  }
  .skill{
    margin-top: 300px;
  }
  #about-wrapper{
    line-height: 0.1px;
    margin-top: 300px;
  }
  .about-img img{
    margin-right: 100px;
  }
  .skill li{
    line-height: 10px;
    position: relative;
  }
  #btn{
    margin-bottom: -100px;
  } */
  .about-img{
    height: fit-content;
    align-items: center;
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
}

/* .contactme{
  color: white;
  border: 2px solid;
  width: fit-content;
  height: fit-content;
}
.div{
  top:0;
}
.contactme {
  display: flex;
  flex-direction: column;
margin-left: 200px;
} */
.contactme {
  color: white;
  line-height: 1.2;
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  margin-left: 200px; 
  padding: 20px; 
}

.div {
  margin-top: 0;
}


.inputitems {
  margin-bottom: 10px; 
}

.button {
  background-color: #0ef;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #09c; 
}

.footer-content {
  text-align: center; 
  margin-top: 20px; 
}
.contactme,p{
  font-family: 'Poppins';
}

.youremail,.fullname,#yoursubject{
  border-radius: 30px;
  border: none;
  padding: 10px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .contactme {
    margin: 0 auto; 
  }
  
  .button {
    width: 100%; 
  }
}
.glow{
  color: #0ef;
}
footer {
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer-content {
  font-size: 14px;
}

.copyright {
  font-weight: bold;
}


