body{
    margin: 0;
    padding: 0;
}

.navbar{
    height: 55px;
    position: static;
}

.nav-item{
    font-size: 18px;
    cursor: pointer;
}
.nav-item a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 500;
}
.nav-item a:hover{
    color: rgb(67, 27, 245);
    font-weight: 500;
    border-bottom: 2px solid rgb(67, 27, 245);
    /*background: linear-gradient(to left, rgb(107, 20, 189) 0%, rgb(185, 6, 6) 100%);*/
}

.bg{
    background-color: navy;
    margin: 0;
    padding: 0;
}
.dbt{
    color: white;
    font-weight: 700;
    font-family: Georgia, serif;
}
.dbt:hover{
    background-color: white;
    color: navy;
    font-weight: 700;
}

.popup{
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(175, 172, 172, 0);
    z-index: 4;
}

.right{
    height: 100vh;
    width: 50%;
    left: 0;
    background-color: rgb(255, 255, 255);
    float: left;
    z-index: 4;
    position: fixed;
}
.right ul li:hover{
    cursor: pointer;
    background-color: rgb(158, 158, 158);
    border-radius: 30px;
}
.right ul li a:hover{
    color: white;
}
.pophide{
    display: none;
}

.name{
    overflow: hidden;
    white-space: nowrap;
    border-right: 1px solid;
    animation: typing 2s steps(23) forwards,
    blink 1s step-end infinite;
    font-weight: 600;
    font-family: Georgia, serif;
}
@keyframes typing {
    from{
        width: 0;
    }
    to{
        width: 100%;
    }
    
}
@keyframes blink {
    50%{
        border-color: transparent;
    }
}

.about{
    background-image: url(../images/design3.png);
    background-repeat:no-repeat;
}


.skills li{
    list-style: none;
    padding: 5px;
}
.bar{
    background-color: rgb(0, 0, 0);
    display: block;
    height: 15px;
    border: 1px solid rgb(187, 187, 187);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
.bar span{
    height: 20px;
    float: left;
    background: linear-gradient(to left, rgb(99, 96, 240) 0%, rgb(255, 255, 255) 100%);
}
.office.animate{
    width: 70%;
    animation: office 3s forwards;
}
.html.animate{
    width: 90%;
    animation: html 3s forwards;
}
.css.animate{
    width: 70%;
    animation: css 3s forwards;
}
.bootstrap.animate{
    width: 50%;
    animation: bootstrap 3s forwards;
}
.javascript.animate{
    width: 28%;
    animation: javascript 3s forwards;
}
.java.animate{
    width: 60%;
    animation: java 3s forwards;
}
.photoshop.animate{
    width: 25%;
    animation: photoshop 3s forwards;
}
.reactnative.animate{
    width: 40%;
    animation: reactnative 3s forwards;
}
.tamil.animate{
    width: 93%;
    animation: tamill 3s forwards;
}
.english.animate{
    width: 65%;
    animation: english 3s forwards;
}
@keyframes office {
    0%{
        width: 0%;
    }
    100%{
        width: 70%;
    }
    
}
@keyframes html {
    0%{
        width: 0%;
    }
    100%{
        width: 90%;
    }
}
@keyframes css {
    0%{
        width: 0%;
    }
    100%{
        width: 70%;
    }
}
@keyframes bootstrap {
    0%{
        width: 0%;
    }
    100%{
        width: 50%;
    }
}
@keyframes javascript{
    0%{
        width: 0%;
    }
    100%{
        width: 28%;
    }
}
@keyframes java{
    0%{
        width: 0%;
    }
    100%{
        width: 60%;
    }
}
@keyframes photoshop{
    0%{
        width: 0%;
    }
    100%{
        width: 25%;
    }
}
@keyframes reactnative{
    0%{
        width: 0%;
    }
    100%{
        width:40%;
    }
}
@keyframes tamill{
    0%{
        width: 0%;
    }
    100%{
        width: 90%;
    }
}
@keyframes english{
    0%{
        width: 0%;
    }
    100%{
        width: 65%;
    }
}
@media (min-width: 990px) {
    .profile{
        display: none;
    }
    .hide{
        display: none;
    }

    .pophide{
        display: none;
    }

    #page1{
        height: 500px;
    }
    .im-bg{
        background-image: url(../images/design2.png);
        background-repeat: no-repeat;
        width: 30%;
    }
    .content{
        padding-top: 130px;
    }
    .name{
        font-size: 33px;
    }
    .marathon{
        width: 400px;
        height: 170px;
    }
    .contact{
        width: 45px;
        border-radius: 15px;
    }
}

.ip{
    font-family: 'Times New Roman', Times, serif; 
    font-weight: 600;
}

@media (max-width: 991px) {
    .hidden{
        display: none;
    }
    .name{
        font-size: 20px;
    }
    .sld{
        color: rgb(0, 0, 0);
        font-weight: 600;
    }
    .hide{
        background-image: url(../images/design3.png);
        background-repeat:no-repeat;
    }
    .nav-item{
        display: none;
    }

    .marathon{
        width: 300px;
    }

    .contact{
        width: 35px;
        border-radius: 15px;
    }
}

@keyframes appear{
    from{
        opacity: 0;
        transform: translateY(-100px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}
.block{
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover
    
    20%;

}