@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600&display=swap');

*{
    box-sizing: border-box;

}
body{
    font-family: 'Poppins', sans-serif;
    background: rgba(244, 244, 244, 0.1);
    margin: 0px;
    padding: 0px;
    color: #383042;
}

header{
    background-color: rgb(204, 52, 102);
    width: 100%;
    height: 250px;
    padding: 40px;
    text-align: center;
}
header img {
    max-height: 80px;
}
.main{
    background-color: #fff;
    width: 600px;
    padding: 40px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,.1);
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    transform: translateY(-80px);
}
.main h2{
    font-size: 24px;
    line-height: 3rem;
    color:rgb(55, 31, 86);
    margin-top: 0px;
}
.main p b{
    color: rgb(204, 52, 102);
}
.main textarea{
    max-width: 100%;
    min-width: 100%;
    max-height: 100px;
    min-height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: rgb(55, 31, 86);
    resize: none;
}