*{
    margin: 0px;
}
body{
    background-color: rgb(219, 219, 247);
}
a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}
.header{
    display: flex;
    justify-content:center;
    gap: 60px;
    background-color: rgb(0, 0, 0);
    padding: 20px;
}
a:hover{
    text-decoration: dashed;
    color: rgb(142, 142, 246);
}
h1{
    font-size: 35px;
}
.background{
    background-image: url(https://t4.ftcdn.net/jpg/04/19/26/97/360_F_419269782_9LsP3TQndMVnZ2j3ZhTPhMjaqQpFAth9.jpg);
    background-size: cover;
    background-position: center;
    height: 89vh;
}
.content{
    color: white;
    padding: 120px;
}
.container{
    display: flex;
}
.typing::after {
    content: "Web Developer"; 
    font-size: 30px;
    color: darkorchid;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    border-right: 3px solid white; 
    width: 0;
    animation: typing 1s steps(15) infinite alternate, blink 10s infinite;
}
@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}
@keyframes blink {
    50% { border-color: aqua; }
}
@keyframes changeText {
    0%, 100% { content: "Full Stack Developer"; }
}
.typing::after {
    animation: typing 5s steps(30) infinite alternate, blink 0.6s infinite, changeText 6s infinite;
}
#project{
    text-align: center;
    margin: 10px;
    padding: 5px;
    display: flex;
    justify-content: center;
    gap: 40px;
}
#project img{
    width: 300px;
    height: 250px;
    border: none;
    border-radius: 10px;
}
.project1 , .project2 , .project3{
    color: black;
    border: 1px solid white;
    border-radius: 10px;
    padding: 30px;
    background-color: rgb(250, 241, 241);
    transition: transform 0.2s ease-in-out;
}
.row2{
    padding: 10px;
    margin: 50px;
}
#project button{
    background-color: rgb(241, 104, 104);
    width: 100px;
    height: 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}
.project1:hover, .project2:hover , .project3:hover{
    box-shadow: 0px 0px 10px 0px rgb(157, 159, 160);
    transform: scale(1.03);
}
.row3{
    padding: 10px;
    margin: 30px;
}
#service{
    text-align: center;
    margin: 10px;
    padding: 5px;
    display: flex;
    gap: 20px;
}
.box1, .box2 , .box3{
    color: black;
    width: 350px;
    height: 100px;
    padding: 35px;
    background-color: rgb(250, 241, 241);
    transition: transform 0.2s ease-in-out;
}
.box1:hover, .box2:hover , .box3:hover{
    box-shadow: 0px 0px 10px 0px rgb(157, 159, 160);
    transform: scale(1.03);
}
.row4{
    padding: 20px;
    margin: 20px;
}
#about{
    display: flex;
    align-items: center;
    color: black;
    border: 1px solid white;
    border-radius: 10px;
    padding: 30px;
    margin: 20px;
    font-size: larger;
}
#about:hover{
    box-shadow: 0px 0px 10px 0px rgb(157, 159, 160);
    background-color: rgb(231, 231, 249);
}
.row5 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh; 
    margin: 0; 
    padding: 50px; 
}
#forms {
    text-align: center;
    border: 1px solid black;
    border-radius: 5px;
    width: 550px;
    height: 300px;
    padding: 40px;
}
input{
    padding: 10px;
    width: 512px;
    height: 20px;
}
.row5 button{
    background-color: blue;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.row5 button:hover{
    background-color: rgb(101, 101, 199);
}
#contacts{
    padding: 20px;
    margin: 20px;
}
#forms:hover{
    box-shadow: 0px 0px 10px 0px rgb(157, 159, 160);
    background-color: rgb(231, 231, 249);
}
footer{
    text-align: center;
    background-color: rgb(135, 135, 180);
    padding: 7px;
    color: white;
    font-size: larger;
}
