* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: cursive;
}

.hero {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(45deg, #010758, #490d61);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero h1 {
    font-size: 45px;
    font-weight: 600;
    margin-top: -50px;
    margin-bottom: 50px;
    color: #fff;
}

.hero span {
    color: #ff2963;
}

textarea {
    width: 100%;
    max-width: 600px;
    height: 250px;
    background: #4038d4;
    color: #fff;
    font-size: 15px;
    border: 0;
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 30px;
}

textarea::placeholder {
    font-size: 16px;
    color: #ddd;
}

.row {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.row button {
    background: #ff2963;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    border: 0;
    outline: 0;
    cursor: pointer;
    border-radius: 35px;
    display: flex;
    align-items: center;
}

button img {
    width: 16px;
    margin-right: 10px;
}

select {
    flex: 1;
    max-width: 100%;
    color: #fff;
    background: #4038d4;
    height: 50px;
    padding: 0 20px;
    outline: none;
    border: none;
    border-radius: 50px;
    appearance: none;
    background-image: url(./dropdown.png);
    background-position-x: calc(100% - 20px);
    background-position-y: 20px;
    background-repeat: no-repeat;
    background-size: 15px;
}

/* Media Queries */
@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 30px;
    }

    .row button {
        font-size: 14px;
        padding: 8px 20px;
    }
}
@media screen and (max-width: 450px) {
select{
    /* min-width: 30vw; */
    font-size: 11px;
}
}
@media screen and (max-width: 381px) {

select{
    font-size: 14px;
}
.row{
    justify-content: center;
}
}
@media screen and (max-width: 328px) {
select{
    font-size: 12px;
}
}