*{
    font-family: "poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero{
    width: 100%;
    min-height: 100vh;
    background : linear-gradient(77deg,#010758, #490d61);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;


}
.hero h1{
    font-weight: 600;
    font-size: 45px;
    margin-top:-50px;
    margin-bottom: 50px;

}
.hero h1 span{
    color: aquamarine;
}
textarea{
    width: 600px;
    height: 250px;
    resize: none;
    border-radius: 20px;
    color: #fff;
    background-color: #403d84;
    font-size: 15px;
    margin-bottom: 30px;
    border: 0;
    outline: 0;
    padding: 20px;

}
textarea::placeholder{
    color: #ddd;
    font-size: 20px;
}
.row{
    width: 600px;
    align-items: center;
    display: flex;
    gap: 20px;
}
button{
    font-size: 15px;
    border-radius: 30px;
    padding: 10px 35px;
    color: #fff;
    background: #ff2963;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
button img{
    width: 16px;
    margin-right: 10px;
}
select{
    flex: 1;
    color: #fff;
    background: #403d84;
    height: 50px;
    outline: 0;
    padding: 0px 20px;
    border: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url(./images/dropdown.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: 400px;
    background-position-y: 20px;
    

}

