* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background: linear-gradient(180deg, #be1258, #ff619f);
}

.container{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero h1{
    font-size: 45px;
    margin-top: -50px;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 2px 2px 4px #333;
}

.hero h1 span{
    color: #78e3fd;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.hero textarea{
    width: 600px;
    height: 250px;
    background: #fec8e0;
    color: #000;
    font-size: 15px;
    border: 0;
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 30px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}

.hero textarea::placeholder{
    font-size: 16px;
    color: #000;
}

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

button{
    background: #78e3fd;
    color: #0d0d0d;
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}

button i{
    font-size: 14px;
    margin-right: 10px;
}

select{
    flex: 1;
    color: #000;
    background: #fec8e0;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    appearance: none;
    background-image: url(imgs10/dropdown.png);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position-x: calc(100% - 20px);
    background-position-y: 13px;
}


@media (max-width: 700px) {

    .hero {
        padding: 20px;
    }

    .hero h1 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero textarea {
        width: 100%;
        height: 220px;
    }

    .row {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    select,
    button {
        width: 100%;
    }

    select {
        padding: 20px;
    }

    button {
        justify-content: center;
        align-items: center;
    }
}