
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;1,100&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    color: rgba(96,110,123);
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}
.container{
    padding: 30px;
    margin-top: 30px;
}
h2{
    color: rgb(43,45,56);
    text-align: center;
    font-size: 48px;
    letter-spacing: -0.2px;
    font-family: 'Lato', sans-serif;
}
p{
    max-width: 670px;
    text-align: center;
    margin-top: 24px;
    margin-bottom: 30px;
}
textarea{
    width: 100%;
    height: 316px;
    padding: 18px;
    resize: none;
    position: relative;
    box-shadow: 0px 12px 48px 0px rgb(109 117 141 / 20%);
    border: 0.5px solid rgb(231, 233, 245);
    border-radius: 16px;
    background-color: white;
}
textarea:focus{
    border: 0.3px solid rgba(43, 45, 53,0.3);
    outline: none;
}
p , textarea{
    font-size: 18px;
    letter-spacing: 1px;
    word-spacing: 2px;
    line-height: 1.6;
}
button{
    background-color: rgb(17, 166, 131);
    color: #fff;
    border-radius: 6px;
    padding: 16px 32px;
    border: none;
    font-size: 18px;
    letter-spacing: 1px;
    margin: auto;
    display: flex;
    position: relative;
    margin-top: -80px; 
    cursor: pointer;  
}
button:focus , button:hover{
    background-color: rgb(42, 201, 164);
    box-shadow: 0px 5px 30px 0 rgba(0, 0,0, 0.1);
}
.counter-container{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0px 10px 0px 10px;
}