*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
   /* background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1)); */
  background: linear-gradient(#ffafcc,#96dfee,#7aede1);

    font-family: 'poppins',sans-serif;
    scroll-behavior: smooth;

}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    background-color: rgb(209, 166, 195);
    overflow: hidden;
}


nav ul {
    display: flex;
    justify-content: space-between;
}

nav ul li {
    list-style: none;
    margin: 0 48px;
}

.right a {
    width: 70px;

}

ul li a {
    padding: 10px;
    text-decoration: none;
    color: purple;
    font-size: 18px;
    font-weight: 700;
    transition: all 1s ease;
    transition-duration: 0.5s;
}

ul li a:hover {
    color: rgb(97, 15, 237);
    font-size:20px;
    border-radius: 10px;
    background-color: #880854;
}

.left {
    font-size: 22px;
}

span {
    position: relative;
    color: rgb(165, 36, 165);

}
.contact{
    font-size: 30px;
    margin-top: 80px;
    margin-left:60px;
    color: maroon;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.name input{
    width: 550px;
    height: 50px;
    padding: 20px;
    margin-left: 50px;
    margin-top: 50px;
    outline: none;
  border: none;
  font-size: 15px;
  border-radius: 20px;
  background-color: #fbe9fa;

}
.name input:hover{
    width: 550px;
    height: 50px;
    border-color: #eb515e;
    border-style: double;
}

.mail input{
    width: 550px;  
    height: 50px;
    padding: 20px;
    margin-left: 50px;
    margin-top: 50px;
    outline: none;
  border: none;
  font-size:15px;
  border-radius: 20px;
  background-color: #fbe9fa;

}
.mail input:hover{
    width: 550px;  
    height:50px;
    border-color: #eb515e;
    border-style: double;

}
#first{
    width: 550px;
    height: 180px;
    padding: 20px;
    margin-left: 50px;
    margin-top: 50px;
    outline: none;
  border: none;
  font-size: 20px;
  border-radius:15px;
  background-color: #fbe9fa;
}
#first:hover{
    width: 550px;
    height:175px;
    border-color: #eb515e;
    border-style: double;

}
.btn button{
    width: 120px;
    height: 55px;
    padding: 20px;
    margin-left: 68px;
    font-size: 1.2rem;
    outline: none;
    border: none;
    border-radius: 10px;
    margin-top: 40px;
    margin-left: 60px;
    background-color: #ee969d;
}
.btn button:hover{
    transition: all 1s ease;
    transition-duration: 0.5s;
    width: 126px;
    height: 58px;
    padding: 20px;
    font-size: 1.3rem;
    background-color: rgb(105, 215, 240);
}

.container{
    display: flex;
    justify-content: space-evenly;
}
.left-pic img{
    width: 800px;
     margin-top: 100px;
}
footer{
    text-align: center;
    margin-bottom: 10px;
    margin-top: 50px;
    color: maroon;
    font-size:18px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}