body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body h1{
    text-align: center;
    margin: 50px auto;
}

.container{
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}

.left,.right{
    margin: 0 auto;
    width: 100%;
}

textarea{
    width: 100%;
    resize: none;
}

i{
    cursor: pointer;
}

#posts div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.options{
    display: flex;
    gap: 25px;
}

#msg{
    color: red;
}

@media screen and (max-width: 768px) {
    .container{
        flex-direction: column;
        padding: 0 50px;
    }
    textarea{
        width: 97%;
    }
}