*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #94d2bd;
}
.container{
    text-align: center;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    border-radius: 10px;
}
h1{
    margin-bottom: 20px;
    letter-spacing: 1px;
}
h3{
    font-weight: 500;
    text-align: left;
    font-size: 18px;
    margin-bottom: 10px;
}
textarea{
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    resize: none;
    outline: none;
}
button{
    background: #94d2bd;
    color: #fff;
    padding: 10px 50px;
    border: none;
    outline: none;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 1px;
    border-radius: 5px;
    box-shadow: 2px 5px 5px rgba(0, 0, 0, .1);
}