@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Share+Tech&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    width: 100vw;
    height: 100vh;
    position: relative;
background-image: linear-gradient(to right, #d2e0ff 0%, #c4fc9f 100%);

}

header{
    background-color: aqua;

}

ul{
    display: flex;
    gap: 30px;
    margin-left: 50px;
    font-size: 22px;
}

button{
    height: 40px;
    width: 80px;
    border-radius: 50px;
    background: #e5ff00;
    border: 2px solid black;
    font-size: 16px;
    font-weight: 600;
    transition: 0.8s all ease-in-out;
}

button:hover{
        transform: translatex(20px);

}

span{
    font-size: 24px;
    font-weight: 700;
    text-decoration: underline;
    color: #ca0000;
}


.content{
    display: flex;
    flex-wrap: nowrap;
     justify-content: center;
    align-items: center;

    height: 600px;
    width: 100vw;
}

img{
    border-radius: 20px 10px 0px 10px;
    border: 4px dotted black;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

img:hover{
    transform: translateY(-20px);
}

.box1{
    justify-content: center;
    align-items: center;
}

footer{
    background: linear-gradient(120deg, #ffecd2, #c2f50a);
    width: 100%;
    height: 400px;
}

footer a{
    text-align: center;
    font-size: 22px;
    display: flex;
    gap: 20px;
    margin-top: 100px;
}

.address{
    margin-left: 400px;
    font-size: 40px;
}

.credit{
    text-align: center;
    font-size: 22px;
}

.form{
    display: block;
    flex-wrap: wrap;
    height: 600px;
    width: 400px;
    border: 3px dotted aqua;
    background: #d7de08;
}

.spa{
    display: flex;

}

input{
    width: 100%;
    height: 30px;
    border-radius: 30px;
    margin-top: 50px;
}
textarea{
    width: 100%;
    height: 200px;
        margin-top: 50px;

}
#submit{
background: #bd0404;
color: aliceblue;
font-size: 22px;
font-weight: 600;
}