*{
    margin: 0;
    padding: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}
.hero{
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(45deg, #f943a7, #f89696);
    display: flex;
    align-items: center;
    justify-content: center;

}
.hero h1 .number{
    position: relative;
    font-size: 60px;
    color:#fe0c0c;
    margin-top: -150px;
    text-shadow: 10px 0 25px rgba(0, 0, 0, 0.25);

}
.hero h1{
position: absolute;
color: rgb(17, 1, 1);
font-size: 42px;
font-weight: 500;
font-family: cursive;
margin-bottom: 550px;
text-shadow: 10px 0 25px rgba(0, 0, 0, 0.25);
top: 15px;
}
.hero h1 span{
    color: aquamarine;
    text-shadow: 10px 0 25px rgba(0, 0, 0, 0.25);

}
textarea{
    width: 850px;
    height: 450px;
    background: #000000;
    font-size: 18px;
    padding: 20px;
    resize: none;
    margin-bottom: 10px;
    outline: none;
    border: none;
    color: aquamarine;
    border-radius: 10px;
    transition: 0.3s all ease;
}
textarea:hover{
    transform: translateY(-10px);
    border: 4px solid aquamarine;
}
textarea::placeholder{
    font-size: 18px;
    color: #dddddd;

}
.content{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    margin-top: 500px;
    margin-bottom: 50px;
}
button{
    background: #ff2963;
    width: 200px;
    height: 60px;
    color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    padding: 10px 30px ;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    align-items: center;
    margin-top: 100px;
    box-shadow: 10px 0 25px rgba(0, 0, 0, 0.25);
    transition: 0.3s all ease;


}
button:hover{
    border: 2px dashed rgb(7, 7, 7);
    transform: translateY(-10px);
}
button img{
    width: 120%;
    height: 100%;
    object-fit: cover;


}
select{
    height: 60px;
    width: 60px;
    flex: 0.5;
    background: aquamarine;
    border: none;
    outline: none;
    border-radius: 30px;
    padding: 0 50px;
    margin-top: 100px;
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid black;
    transition: 0.3s all ease;
   
}
select:hover{
    border: 2px dashed rgb(7, 7, 7);
    transform: translateY(-10px);
}
.hero p{
    text-align: center;
    color:rgb(6, 6, 6) ;
display: flex;position: absolute;
font-size: 22px;
margin-top: 30px;
bottom: 10px;
font-weight: 500;
}