*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
}
.hero{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(60deg,rgb(29, 29, 29),rgb(228, 240, 239),rgb(245, 132, 151));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero h1{

    font-size: 24px;
    font-weight: 500;
    margin-top: -50px;
    margin-bottom: 50px;

}
.hero h1 span{
    color: #ff2963;
}
textarea{
    width: 600px;
    height: 250px;
    color: black;
    font-size: 15px;
    border: 0;
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 30px;
}
textarea ::placeholder{
    font-size: 16px;
}

.row{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button{
    background-color: #ff2963;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 30px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
button img{
    width: 20px;
    margin-right: 10px;
}
select{
    flex: 1;
    color: #fff;
    background:#403d84;
    height: 35px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 20px;
    /* appearance: none;
    background: url(icons8-dropdown-32.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x:calc(100% - 20px);
    background-position-y:20px; */
}