*{
    margin: 0;
    padding: 0;
    font-family: "Poppins",sans-serif;
    box-sizing: border-box;
}
.hero{
    width: 100%;
    min-height: 100vh;
    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero h1{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-top: -80px;
    margin-bottom: 20px;
}
.hero h1 span{
    color: #ffde21;
}
textarea{
    padding: 5px;
    border: 0;
    outline: 0;
    width: 600px;
    height: 300px;
    resize: none;
    border-radius: 10px;
    background-color: rgba(44, 62, 80, 0.7);
    /* opacity: 0.7; */
    color: #fff;
    font-size: 20px;
}
textarea::placeholder{
    font-size: 20px;
    color: #fff;
}
.row{
    width: 600px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
button{
    background-color: #ffde21;
    border: 0;
    outline: 0;
    padding: 0px 35px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
}
button img{
    width: 16px;
    margin-right: 7px;
}
select{
    flex: 1;
    color: #fff;
    background:  rgba(44, 62, 80, 0.7);
    height: 50px;
    padding: 0 20px;
    border: 0;
    outline: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url("./assets/dropdown.png");
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x:calc(100% - 20px);
    background-position-y: 20px;
}

textarea {
    scrollbar-width: thin; 
    scrollbar-color: #2c3e50 rgba(255, 255, 255, 0.7);;
}

