@import url('https://fonts.googleapis.com/css?family=Poppins:700');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0%;
    padding: 0%;
}
body{
    background-color: #fefbe9;
    font-family: 'Work Sans',sans-serif;
    font-weight: bolder;
    display: grid;
    place-items: center;
    cursor: none;
}
.loader {
    background: url('new-loading.gif') no-repeat center center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index:1;
}
.container{
    max-width: 99vw;
    border: 2px solid white;
    width: 180vw;
    height: 90vh;
    margin-top: 2%;
    border-radius: 20px;
    background: rgba( 255, 255, 255, 0.1 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 1px );
    -webkit-backdrop-filter: blur( 1px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    overflow: hidden;
}
.container:hover{
    box-shadow: 0 8px 32px 0 rgba(143, 150, 243, 0.37);
    transition: 1s;
}
nav{
    border: 2PX solid transparent;
    height: 5vh;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
}
 a{
    margin-left: 7vh;
    color: #282612;
    text-decoration: none;
    border-right: 1px solid white;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
    box-shadow: inset 0 0 0 0 #54b3d6;
    cursor: none;
} 
  a:hover {
    color: #fff;
    box-shadow: inset 200px 0 0 0 #54b3d6;;
  }
.fa-bars{
    margin-left: 20vh;
    cursor: none;
    box-shadow: 5px 3px 2px black;
    color: black;
}
.svg{
    border: 2px solid transparent;
    width: 99%;
    height: 90%;
    overflow: hidden;
    margin-left: 7px;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
}
.blob {
    position: absolute;
    top: -10%;
    left: -10%;
    fill: #F4E2D8;
    width: 50%;
    z-index: -1;
    animation: move 10s ease-in-out infinite;
    transform-origin: 50% 50%;
  }
  
  @keyframes move {
    0%   { transform: scale(1)   translate(10px, -30px); }
    38%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg); fill: #BA5370;}
    40%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg);}
    78%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg);fill: #4B79A1; }
    80%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg);}
    100% { transform: scale(1)   translate(10px, -30px); fill: #C4E0E5;}
  }
 
 .content{
    border: 2px solid black;
     width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 100%;
    background: url(logo.PNG)  center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 1%;
 }
 .logo{
     height: 200px;
     border: 2px solid transparent;
     overflow: hidden;
 }
 img{
     height: 170px;
     margin-left: -48%;
 }
 .content-x{
     border: 2px solid transparent;
     width: 50%;
     height: 100%;
     color: black;
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    font-size: 4rem;
    padding-left: 5%;
 }
 .content-x span:hover{
     color: #08fdd8;
    font-size: 120px;
    transition: 1s;
 }
.new-blob{
    width: 40%;
    height: 80%;
    border: 2px solid transparent;
    z-index: -1;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.new-blob img{
    margin-left: 5%;
}
.blob-new{
    border: 5px solid transparent;
}
#blobSvg{
    margin-top: 0%;
    margin-right: 50%;
}
.me{
    border: 2px solid transparent;
    width: 400px;
    height: 400px;
        margin-left: 68%;
    position: absolute;
    top: 10%;
    margin-top: 10%;
    background: url(programming.png) top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* FOR CURSOR */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* body{
  height: 100vh;
  background: #000115;
  cursor: none;
} */
.main{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cursor{
  z-index: 999;
  position: fixed;
  background: #2696E8;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 20px #2696E8,
              0 0 60px #2696E8,
              0 0 100px #2696E8;
  animation: colors 5s infinite;
  transform: translate(-50%, -50%);
  display: none;
}
@keyframes colors{
  0%{
    filter: hue-rotate(0deg);
  }
  100%{
    filter: hue-rotate(360deg);
  }
}
.cursor:before{
  content: '';
  position: absolute;
  background: #2696E8;
  width: 50px;
  height: 50px;
  opacity: 0.2;
  transform: translate(-30%, -30%);
  border-radius: 50%;
  display: none;
}
/* -----------------------------------------------CURSOR END */
 @media screen and (max-width:321px) {
     .container{
         height: 150vh;
         width: 100vh;
         display: grid;
         place-items: center;
         overflow-y: scroll;
         overflow-x: hidden;
     }
     .me{
         width: 60%;
         height: 30%;
         top: 40vw;
         left: -49vw;
         border: 2px solid black;
     }
     .content{
         display: none;
     }
     h1{
         font-size: 1em;
     }

     .fa-bars{
        display: none;
    }
    nav{
        display: block;
        width: 10%;
        margin-left: -80%;
        margin-bottom: 100%;
    }
    a{
        margin: 0%;
        display: flex;
        flex-direction: row;
        padding: 10%;
        border: 2px solid transparent;
        margin-bottom: 3%;
    }
} 
@media screen and (max-width:1441px) {
    .container{
        width: 100%;
        height: fit-content;
        overflow-y: scroll;
        overflow-x: hidden;
    }
}
@media screen and (max-width:768px) {
    .me{
        left: -20vw;
        border: 2px solid transparent;
    }
    .content{
        display: none;
    }
    nav{
        border: 2px solid transparent;
        margin-top: 4%;
    }
}
@media screen and (max-width:426px){
    .content-x{
        padding: 0% 0%;
        font-size: 3rem;
        width: fit-content;
        height: fit-content;
        border: 2px solid transparent;
        margin-top: 150%;
    }
    span{
        padding: 0%;
        margin: -.5%;
        position: relative;
    }
    .me{
        left: -65vw;
        top: 10%;
    }
    .container{
        height: auto;
    }
    .fa-bars{
        margin-left: 45vw;
    }
    nav{
        display: block;
        width: 10%;
    }
    a{
        margin: 0%;
        display: flex;
        flex-direction: row;
        padding: 10%;
        border: 2px solid transparent;
        margin-bottom: 3%;
    }
}
@media screen and (max-width:376px) {
    span{
        margin-left: -1%;
    }
    .content-x{
        margin-left: -1%;
    }
}