html {
  background-color: #273036;
font-family: "Audiowide", sans-serif;
}
body{
padding: 0px;
font-family: 'Boogaloo';
font-size: 22px;
}
/*navbar and main design */
@import url('https://fonts.googleapis.com/css?family=Lobster&display=swap');

.wrapper {
  animation: scroll 70s linear infinite;
  background: url("https://images.unsplash.com/photo-1465146633011-14f8e0781093?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=3450&q=80"), #111111;
  color: #eee;
  min-width: 360px;
  width: 100%;
  height: 640px;
  
  perspective: 1000px;
  perspective-origin: 50% 50%;

}

@keyframes scroll {
  100% {
    background-position: 0px -3000px;
  }
}

@media (prefers-reduced-motion) {
  .wrapper {
    animation: scroll 200s linear infinite;
  }
}

.main {  
  color: rgb(255, 255, 255);
}
.main-info > h3 {
  margin-top: 5px;
  background-image: linear-gradient(
    to bottom right,
    rgb(122, 122, 122),
    rgb(46, 183, 247),
    rgb(0, 0, 0)
  );
  border: 0px solid black;
  padding: 10px;
  border-radius: 15px;
}
.main-info {
  margin-top:0px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items:left;
  margin-left:10%;
}
.main-info > code {
  color: white;
  font-size: 20px;
}

.pro-img {
  margin-top: 60px;
  width: 200px;
  height: 200px;
  border: 0px solid black;
  border-radius: 100px;
}
/*text styling*/
.ml11 {
    font-weight: 700 !important;
    font-size: 2em !important;
}

.ml11 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
}

.ml11 .line {
    opacity: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: #fff;
    transform-origin: 0 50%;
}

.ml11 .line1 {
    top: 0;
    left: 0;
}

.ml11 .letter {
    display: inline-block;
    line-height: 1.5em;
}

.ml12 {
    font-weight: 700 !important;
    font-size: 2em !important;
}

.ml12 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
}

.ml12 .line {
    opacity: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: #fff;
    transform-origin: 0 50%;
}

.ml12 .line1 {
    top: 0;
    left: 0;
}

.ml12 .letter {
    display: inline-block;
    line-height: 1.5em;
}

/*end text styling*/

/* end main design */

/* about design */
.h3 {
  text-align: center;
  margin-top: 35px;
}
/* end about design */

/*Skills*/
.skills{
      border: 10px solid;
      border-top-color: #16DB93;
      border-bottom-color: #A4036F;
      border-left-color: #EFEA5A;
      border-right-color: #FE5E41;
}
.skills-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 10px;
}
.skills-item-icon > i {
  margin: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 2em !important;
}
.skills-item-icon > p {
  font-size: 1em;
  text-align: center;
}
/* end skills*/

/*project*/
.project-items {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.card {
  margin: 15px;
}
/* end of project*/

/*Contact*/
.contact-box {
  display: flex;
  justify-content: center;
}
.form {
  width: 400px;
}
/*End of Contact*/

/*footer*/

.footer-main {
  margin: 0px;
  background-color: #273036;
  color: azure;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.footer {
  margin: 0px;
  background-color: #273036;
  color: azure;
  border: 1px solid #273036;
}
.footer > p {
  text-align: center;
  margin-top: 40px;
}
.footer-item-icon{
    display:flex;
    flex-direction: row;
}
.footer-item-icon > i {
  margin: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 2em !important;
}
.footer-item-icon>a{
    padding-top: 14px;
}
.footer-wave {
  width: 100%;
  margin: 0%;
}

a {
  text-decoration: none;
  color: azure;
  cursor: pointer;
}
a:hover {
  color: azure;
}
/*end of footer*/
/* hr design*/
 .strike {
   display: block;
   text-align: center;
   overflow: hidden;
   white-space: nowrap;
 }

 .strike>span {
   position: relative;
   display: inline-block;
 }

 .strike>span:before,
 .strike>span:after {
   content: "";
   position: absolute;
   top: 50%;
   width: 9999px;
   height: 1px;
   background: red;
 }

 .strike>span:before {
   right: 100%;
   margin-right: 15px;
 }

 .strike>span:after {
   left: 100%;
   margin-left: 15px;
 }
/* End of hr design*/

/* media queries*/
@media only screen and (max-width: 600px) {
  .footer-main {
    flex-direction: column;
    padding: 0.8em;
  }
  .footer-item-icon>i {
      font-size: 1.5em !important;
  }
  .main-info {
    align-items: center;
    margin-left:0px;
  }
  .ml11 {
      font-weight: 400 !important;
      font-size: 1.5em !important;
  }
  .ml12 {
      font-weight: 400 !important;
      font-size: 1.5em !important;
  }
}
/*end of media queries*/
