    *{
        margin:0;
        padding:0;
        font-family: 'poppins', sans-serif;
        box-sizing: border-box;

    }

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

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

textarea{
    width: 600px;
    height: 250px;
    background: #490d61;
    color: #fff;
    font-size: 15px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 3px;
    outline: none;
    resize: none;
}

.row{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button{
    background: #eb0707;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
button img{
    width: 16px;
    margin-right: 10px;
}

select{
    flex: 1;
    color: #fff;
    background-color: #490d61;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url(images/dropdown.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 20px);
    background-position-y: 20px;

}