*{
    margin:0;
    padding:0;
    font-family:'Courier New', Courier, monospace;
    box-sizing: border-box;
}
.hero {
    width:100%;
    min-height: 100vh;
    background: rgb(63,94,251);
background: linear-gradient(90deg, rgb(4, 24, 123) 0%, rgb(4, 4, 19) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color:#fff;
    padding:5px;
}
.hero h1 {
    font-size: 45px;
    font-weight: 500;
    margin-top: -50px;
    margin-bottom: 50px;
    width:100%;
    text-align: center;
}
.hero h1 span {
    color: #ff2963;
}
textarea {
    width:100%;
    max-width:600px;
    height:250px;
    background:#413d8486;
    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;
    align-items: center;
    gap:20px;
}
button {
    background: #ff2963;
    color: #fff;
    font-size: 16px;
    padding:10px 30px;
    border:0;
    border-radius: 35px;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap:10px;
    height: 50px;;
}
select {
    width:100%;
    max-width:450px;
    color:#fff;
    background: #413d8486;
    height: 50px;
    padding:0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    appearance: none; 
    cursor:pointer;
   
}
@media  (max-width:470px)
    {
    .row {
        display: flex;
        flex-direction: column;  
    }
 
}