body{
    background-color:rgb(23, 19, 19);
    color: white;
}
.box{
    margin-top: 0%;
    padding-top: 0%;
    display: flex;
   align-items: center;
}
.name{
    margin-left: 10%;
    color: orange;
    font-size: larger;
    font-size: xx-large;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.btn {
    margin-left: 5%;
    width: 1000px;
    display: flex;
    justify-content: space-evenly;  
    align-items: center;
    background-color: #111;  
    padding: 10px 0;
    flex-wrap: wrap; 
}

.nav-link {
    color: white;
    background-color: black;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.nav-link:hover {
    background-color: orange;
    color: black;
}
#btn1{
    color: white;
    background-color: black;
    display: inline-block;
    justify-content: space-evenly;
}
#btn1:hover{
    background-color:transparent;
    color: white;
    font-size:medium;
    
}
.box1{
    margin-top: 0%;
    border:1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img{
    height: 500px;
    width: 500px;
    margin-left: 9%;
    border: 1px solid black;
    background-image: url("a.jpg");
    background-size:cover;
    margin-top: 5%;
    background-repeat: no-repeat;
    border-radius: 2%;
}
.img:hover{
    background-color: transparent;
    border: 0.5px solid white;
}
.c{
    margin-left: 10%;
    height: 500px;
    width: 700px;
   
}
i{
    border:10px solid white;
    border-radius: 100%;
    color: white;
    margin-top: 20%;

}
i:hover{
    border-radius: 2px solid black;
    color: white;
    font-size: x-large;
#hireme {
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#hireme:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

#hireme:active {
    transform: scale(0.97);
}

@media (max-width: 600px) {
    #hireme {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

}
@media(max-width:700px){
    .img{
        height: 200px;
        width: 200px;
        margin-bottom: 40%;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .btn-group{
        
        flex-direction: column;
        gap:10px;
        width: 100%;
       
    }
    .btn{
        width:100%;
        text-align: left;
    }

}
.typing span{
    position: relative;
}
.typing span::before{
    content: "Front-end Developer";
    animation: words 20s infinite;
    color: rgb(247, 175, 41);
}
.typing span::after{
    content: "";
    background-color: balck;
    position: absolute;
    width: calc(100%+8px);
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.8s infinite;

}
@keyframes cursor{
    to{
        border-left: 3px solid orange;

    }
}
@keyframes words{
    0%,30%{
        content: "Web Developer";
    }
    31%,60%{
        content: "Full Stack Developer";
    }
    61%,100%{
        content: "Software developer";
    }
}
