*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
a:link, a:visited {
    text-decoration: none;
    color: white;
    cursor: pointer;
}

body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    position: relative;
}

nav{
    background-color: rgb(37, 36, 36);
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    position: fixed;
    top: 0px;    
}

nav ul {
    display: flex;
    font-size: 25px; 
    font-weight: 500;  
}
nav li{
    list-style: none;
    margin: 0 20px 0 20px; 
}

nav a:hover{
    color:  rgb(214, 27, 46);
    cursor: pointer;
}
.main-div{
    height: 90vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.img
{
    background-image: linear-gradient(to top, rgb(0, 0, 0) 0, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%) , url(img/hhh.jpg) ;
    height: 400px;
    width: 350px;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.txt{
    height: 300px;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.resumebtn{
    height: 30px;
    width: 150px;
    color: white;
    background-color: rgb(214, 27, 46) ;
    border-radius: 13px;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    font-size: 20px;   
}

.skills-box{
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.list{
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
    height: 300px;
    width: 500px;
}
.list li{
    margin: 20px ;
}
.line
{
    height: 10px;
    background-color:  rgb(37, 36, 36);
}

.project-img{
    display: flex;
    justify-content: space-evenly;
}

.box{
    height: 350px;
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: 2px solid rgb(214, 27, 46) ;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 13px;
    margin: 0 50px 0 50px;
}

.box div{
    height: 100px;
    width: 300px;
    font-weight: 500;
}
#project img{
    height: 150px;
    width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#project img:hover{
    transform: scale(1.05);
}


form {
    height: 400px;
    width: 500px;
    border: 2px solid rgb(214, 27, 46);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

form input , textarea{
    height: 30px;
    width: 300px;
    padding: 5px;
    border: 1.5px solid black;
    border-radius: 13px;
}

.submit{
    background-color: rgb(214, 27, 46); 
    color: white;
    font-weight: 500;
    border: none;
}

