*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
height: 100%;
width: 100%;
}

body{
    background-color: #776b6b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

h3{
    color: #fff;
    margin: 10px 0 20px;
    text-align: center;

}

.container{
    width: 500px;
}

textarea{
    border: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    font-size: 16px;
}

.tag{
    background-color: rgb(250, 142, 142);
    color: white;
    border-radius: 50px;
    padding: 10px 20px ;
    margin: 0 5px 10px 0;
    font-size: 14px;
    display: inline-block;
}

.tag.highlight{
    background-color: #8c5b01;
}