* {
    margin: 0;
    padding: 0;
    ;
}

.hero{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(45deg, #010758, #490d61);
    color: #fff;
}

.hero h1{
    font-size: 45px;
    font-weight: 500;
    margin-top: -50px;
    margin-bottom: 50px;
}

.hero h1 span{
    color: #ff2963;
}

textarea{
    background-color: #403d84;
    width: 600px;
    height: 250px;
    font-size: 15px;
    color: #fff;
    border: none;
    outline: none;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    resize: none;
}

textarea::placeholder{
    font-size: 16px;
    color: #ddd;
}

.row{
    display: flex;
    align-items: center;
    gap: 20px;
    width: 600px;
}

button{
    background-color: #ff2963;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 35px;
    font-size: 16px;
    padding: 15px 30px;
    cursor: pointer;
}

select{
    flex: 1;
    border: none;
    outline: none;
    padding: 0 30px;
    appearance: none;
    width: 15px;
    background-color: #403d84;
    height: 50px;
    border-radius: 35px;
    color: #fff;
    background-image: url("./pngegg.png");
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x:calc(100% - 20px) ;
    background-position-y:calc(20px) ;
    cursor: pointer;

}