body{
font-family: Geneva,Tahoma,Verdana,;
font-size:15px;
background-color: rgb(17, 59, 13);
color:white;
}
#pname{
font-size:x-large;
}
#p1{
   
   font-size:30px;
}
#span1,#span2,#span3{
    animation: hello 5s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    color:rgb(34, 155, 44);
    transition: color ease-in-out;
}
#span1{
    animation-delay: 0s;
}
#span2{
    animation-delay: 0.5s;
}
#span3{
    animation-delay: 1s; 
}
@keyframes hello{
    0%{
        color:rgb(20, 83, 25);
        
    }
    33%{
    color:rgb(50, 136, 16);
    
    translate : 20%;
    }
    66%{
        color:rgb(11, 185, 11);
      
    }
    99%{
        color:rgb(50, 136, 16);
        
    }
}

  
#navlinks{
    display:flex;
    height: 7vw;
    position:relative;
    align-items: center;
    justify-content: flex-end;

}
a{
    text-decoration: none;
    color:salmon;
    background-color:rgb(26, 8, 110);
}
#home{
   color:rgb(11, 11, 92);
   
   margin:20px;
    
}
li{
    list-style: none;
}
#about{
   margin:20px;
}
#edu{
    padding:10px;
}
#ser{
    padding:10px; 
    color:white;
    text-decoration: none; 
}
#hob{
    padding:10px;
    
}
#inst{
    padding:10px;
}

#btdiv{

    border:3px dotted black;
   position:relative;
   
    display:flex;
    top:10cqmax;
    justify-content: space-evenly;
    height:50px;
}
#cont,#abt{
    border:2px solid blue;
    width:70%;
    margin:20px;
    height:30vh;
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    font-size:large;
    padding:50px;
    border-radius: 30px;
    animation : animate-border 5s infinite ease-in-out;
    transition: all ease-in-out;
}

#photo{
    
    width:20vw;
   
}

#des{
    border: 2px solid blue;
    animation : animate-border 2s infinite ease-in-out;

    animation-fill-mode: both;
    min-height: 100px;
    margin-top:20px;
    padding:20px;
    border-radius: 30px;
    font-size:4vw;
    transition: all ease-in-out;
}

@keyframes animate-border{
    0%{
        
        border-top: 2px solid blue;
        border-right: 2px solid red;
        border-bottom: 2px solid rgb(59, 230, 36);
        border-left: 2px solid orangered;
    }
    33%{
        border-right: 2px solid blue;
        border-bottom: 2px solid red;
        border-left: 2px solid rgb(59, 230, 36);
        border-top: 2px solid orangered;
    }
    66%{
        border-bottom: 2px solid blue;
        border-left: 2px solid red;
        border-top: 2px solid rgb(59, 230, 36);
        border-right: 2px solid orangered;
        
    }
    100%{
        border-left: 2px solid blue;
        border-top: 2px solid red;
        border-right: 2px solid rgb(59, 230, 36);
        border-bottom: 2px solid orangered;
    }
}

#hireme{
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    
    width: 70%;
    position: absolute;
    top:10%;
    left:10%;
    background-color: blue;
    width:fit-content;
    align-items: center;
    visibility: hidden;
   
}
.forminp{
    
width:70%;
height: 2em;
background: linear-gradient(to right, rgb(212, 187, 197), rgb(97, 49, 49));
color: rgb(27, 26, 26);
margin:3px;
border:none;
text-align: center;
}
textarea::placeholder ,input::placeholder,#submit,input:focus ,input:active{
    color:rgb(12, 2, 2);
    font-size: 1.5em;
}

#form{
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}
#close{
background-color: red;
position: absolute;
right: 0%;
font-size: 1.2em;
}
#mymessages{
    padding :3px;
}