
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
    background-color: rgba(0, 0, 0, 0);
}
html{
    scroll-behavior:smooth;
}
/* navbar */
body{
    background:#0000;
    color:#ffff;
}
#header{
    width:100%;
    height:100vh;
    background-image:url(background1.png);
    background-size:cover;
    background-position:center;
}

  
nav{
    
    position: sticky;
    padding: 1px 0;
    z-index: 12;
    height: 80px;
    width: 100%;
    background-color:rgba(0, 17, 255, 0.144);
}
.logo{
    margin-top:20px;
    padding: 0 30px;
    line-height: 80px;
}
.logo:hover{
    cursor: pointer;
      height: 55px;;
}
nav ul{
    float: right;
    margin-right: 20px;
}
nav ul li{
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;

}
nav ul li a{
    font-family: 'Yeon Sung', cursive;
    color: rgb(255, 64, 0);
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    padding: 8px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
 nav ul li a:hover{
    font-size:22px;
    color:rgb(255, 72, 0);
    background-color:rgba(183, 170, 170, 0.427);
    text-decoration: underline;
    text-decoration-color: rgb(255, 96, 11);
    -moz-text-decoration-color: rgb(255, 96, 11);
}
 .checkbtn{
    font-size: 35px;
    color:#ffffff;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;


}
#check{
    display: none;
}
/* media query */
@media (max-width:952px){
    label.logo{
        font-size: 28px;
        padding-left: 50px;
    }
    nav ul li a{
        font-size: 18px;

    }
    
}

@media (max-width:858px){
    .checkbtn{
        display: block;

    }
    #header{
        background-image:url(new2.png);
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: #081cb4d7;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all 1s;
        -webkit-transition: all 1s;
        -moz-transition: all 1s;
        -ms-transition: all 1s;
        -o-transition: all 1s;
}
    nav ul li{
        display: block;


    }
    nav ul li a{
        font-family: 'Yeon Sung', cursive;
        color: rgb(255, 64, 0);
        font-size: 30px;
    }
    nav ul li a:hover{
        background-color:rgb(183, 170, 170);
        text-decoration: underline;
        text-decoration-color: rgba(17, 65, 107, 0.856);
        -moz-text-decoration-color: rgba(17, 65, 107, 0.856);
        color: rgb(255, 64, 0);
}
    #check:checked~ul{
        left: 0;
    }
    .img img{
       display: none;
        }
.skill9{
    display:flex;
    flex-direction:column;
    }
 .btn2{
    display:none;
    }
.main{
    display:flex;
    flex-direction:column;
    }
 .main .img1{
    display:flex;
    flex-direction:column;
    padding:50px 10px 10px 10px;
    }
 .img1 img{
     height: 45vh;
     width: 330px;
    }
 .main-txt h1 span{
     font-size: 70px;
    }
    
}

/* login */
*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #080710;
}
#login-form{
  margin-top:100vh;
}
.background{
    width: 430px;
    height: 520px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}
.background .shape{
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%; opacity:0.9;
}
.shape:first-child{
  background:linear-gradient(135deg, #0099ffb4, #b700ff);
    left: -70px;
    top: -90px;
   
}
.shape:last-child{
    background: linear-gradient(
 to right, #8f00f4, #ff9500 );
    right: 100px;
    bottom: -100px;
}
form{
    height: 650px;
    width: 400px;
    background-color: rgba(255,255,255,0.13);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 430px;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    padding: 50px 35px;
}
form *{
    font-family: 'Poppins',sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}
form h3{
    font-size: 32px;
    font-weight: 500;
    line-height: 42px;
    text-align: center;
}

label{
    display: block;
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
}
input{
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding: 0 10px;
    margin-top: 8px;
    font-size: 18px;
    font-family: 'Yeon Sung', cursive;
    font-weight: 700;
    color: #ffffff;
    filter: brightness(100%);
    -webkit-filter: brightness(100%);
}
::placeholder{
    color: rgba(174, 174, 174, 0.815);
    font-weight:900;
}
#btn89{
    margin-top: 30px;
    background:linear-gradient(135deg, #ff0000a2, #001aff96);
    color: #ffffff;
    padding: 5px 0;
    height:50px;
    width:330px;
    font-size: 27px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
}

.social11{
  margin-top: 30px;
  display: flex;
}
.social11 div{
  background: red;
  width: 150px;
  border-radius: 3px;
  padding: 5px 10px 10px 5px;
  background-color: rgba(255,255,255,0.27);
  color: #eaf0fb;
  text-align: center;
}

.social11 .fb{
  margin-left: 25px;
}
.social11 i{
  margin-right: 4px;
}
.social11 .go:hover{
  cursor:pointer;
  background:linear-gradient(150deg,#3cba5396,#f4c20d8a,#db32358d,#4884edab);
  
}
.social11 .fb:hover{
  background:#3b5998;
  cursor:pointer;
}

.me{
  display: flex;
  float: left;
}
.me input{
height: 17px;
margin-top: 25px;
}
.me h5{
  margin-left: 16px;
  margin-top:25px;
  font-size:15px;
}
.me h6{
  margin-left: 39px;
  margin-top:25px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  font-size:17px;
  text-decoration:underline;
  text-decoration-color: #001eff;
  cursor:pointer;
  -moz-text-decoration-color: #001eff;
}


 form h4{
  text-align:center;
  margin-top:9px;
 }

 .not{
  margin-top:20px;
 }
 .not a{
  text-decoration:underline;
  text-decoration-color: blue;
  font-size:23px;
  -moz-text-decoration-color: blue;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.not a:hover{
    font-size: 26px;
}
.not span{
    margin-left: 200px;
}
 
/* footer */
#footer1 {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: flex-end;
   margin-top:120vh;
  }
  footer {
    background-color: black;
    color: white;
    bottom: 0;
    width: 100vw;
    font-size: 16px;
  }
  footer * {
    box-sizing: border-box;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'Yeon Sung',cursive;
  }
  .row {
    padding: 1em 1em;
  }
  .row.primary {
    background:linear-gradient(135deg, #429fde, #c966f1);
    display: grid;
    grid-template-columns: 3fr 2fr 4fr;
    align-items: stretch;
}
.row.primary:hover{
    background:linear-gradient(-135deg, #429fde, #c966f1);
}
  .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 2em;
    min-height: 15em;
  }
  .column-link h3 {
    width: 100%;
    text-align: left;
    color: white;
    font-size: 1.4em;
    white-space: nowrap;
  }
  .column-link al{
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  li:not(:first-child) {
    margin-top: 1em;
  }
  al li a {
    font-weight: 900;
    color: #000000;
    text-decoration: none;
  }
  al li a:hover {
    color: #1700ac;
  }
  .about p {
    text-align: justify;
    line-height: 2;
    margin: 0;
  }
  .email input{
    margin-top:14px;
    font-size: 20px;
    font-weight:600;
    font-family: 'Yeon Sung',cursive;
    padding: 1em;
    width: 100%;
    height:50px;
    color:rgb(0, 0, 0);
    border: 2px solid rgb(8, 0, 255);
    border-radius: 15px;
    margin-bottom: 5px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
  .email button {
    border-radius: 20px;
    justify-content: center;
    text-align: center;
    width: 200px;
    background:linear-gradient(135deg, #0099ff, #b700ff);
    color: #fff;
    border: 1.5px solid blue;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-left: 130px;
    font-family: 'Yeon Sung',cursive;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin-top: 10px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
  .email button:hover{
    background:linear-gradient(-135deg, #0099ff, #b700ff);
  }
  div.social {
    display: flex;
    justify-content: space-around;
    font-size: 2.4em;
    flex-direction: row;
    margin-top: 0.5em;
  }
  .social i {
    transition: all 0.3s ease;
    color: #0026ff87;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
  .copyright {
    padding: 0.3em 1em;
    background-color: #25262e;
  }
  .footer-menu{
    float: left;
  }
  .footer-menu a{
    color: #cfd2d6;
    padding: 6px;
    text-decoration: none;
  }
  .footer-menu a:hover, .social i:hover{
    color: rgb(13, 0, 255);
    cursor: pointer;
  }
  .copyright p {
    font-size: 0.9em;
    text-align: right;
  }
  .column-subscribe h1{
    font-size:30px;
  }
  @media screen and (max-width: 850px) {
    #login-form{
      margin-left: 100px;
    }
    .row.primary {
      grid-template-columns: 1fr;
    }
    .column-subscribe h1{
        font-size:20px;
    }

  }