*{
padding: 0;
margin: 0;
box-sizing: border-box;
}

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

    background: linear-gradient(45deg,red,blue);
}

h1{
    height: 50px;
    color: aliceblue;
    margin: 15px;
    margin-top: -50px;
}
h1 span{
    color: rgb(255, 6, 147);
    /* text-decoration:underline rgb(239, 209, 234); */
}
textarea{
    width: 600px;
    height: 250px;
    border-radius: 15px;
    border: 0;
    outline: 0;
    color: rgb(255, 249, 255);
    background:  rgb(0, 0, 0);
    padding: 20px;
    margin-bottom: 30px;
    font-size: 15px;
    resize: none;    
}
textarea::placeholder{
    font-size: 16px;
    color:#ddd;
}
.input{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button{
    background:  rgb(0, 0, 0);
    color: white;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
button img{
    width: 25px;
    margin-right: 10px;
}

select{
    flex: 1;
    height: 50px;
    color: aliceblue;
    background:  rgb(0, 0, 0);
    padding: 0 20px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    appearance: none;
    background-image: url(drop.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position-x: calc(100% - 20px ) ;
    background-position-y: 20px;
}