@import "tailwindcss";

@font-face {
    font-family: vazir;
    src: url('../fonts/vazirmatn-regular.woff2');
}

*{
    font-family: vazir;
}

p{
    border-radius: 0.2rem;
    padding: 0.2rem;
    color: white;
    font-size: 0.8rem;
    max-width: 70%;
    display: inline-block;
    position: relative;
}

p.me{
     /*background-color: rgb(66, 66, 206); */
    background-color: rgb(11, 102, 11);
    align-self: flex-start;
}

p.other{
    align-self: flex-end;
    background-color: rgb(43, 43, 43);
    border: 1px solid rgb(11, 102, 11);
    
}

.chat-container{
    overflow-y: auto;
    overflow-x: hidden;
}

p span{
    position: absolute;
    font-size: 0.6rem;
    top: 100%;
    right: 0;
}

body{
    /*background-image: url('../images/fk.jpg');*/
    /*background-size: cover;*/
    /*background-position: center;*/
    /*background-attachment: fixed;*/
}