@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


/*
    .lobster-regular {
  font-family: "Lobster", serif;
  font-weight: 400;
  font-style: normal;

  
.open-sans-<uniquifier> {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

}

*/

*{
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #f0f0f0
}

ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.title{
    font-family: 'Lobster', cursive;
    font-weight: 400;
    font-size: 1.12rem;
}

.nickName{
    font-size: .8rem;
    margin-bottom: .3rem;
}

.header{
    display: flex;
    flex-direction: column;
}

.container-sm{
    margin: 0;
    padding: 0;
}

/*--- Carroseu dos story ---*/

/*--- STORY ---*/

.storys{
    display: flex;
}

.perfil{
    align-items: baseline;
    margin-left: .35rem;
    margin-right: .35rem;

}

.image{
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: .2rem;
}


/*--- Post ---*/
.post{
    display: grid;
    margin-top: .2rem;
    justify-content: center;
    padding: .2rem;
    margin-bottom: 2.2rem;
}

.perfil-post{
    display: flex;
    margin-bottom: .3rem;

}

.image-post{
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .45rem;
}

.image-post-body{
    margin-top: .2rem;
    width: 19rem;
    height: 22rem;
}

.text{
    display: flex;
    height: 1rem;
    flex-direction: column;
    align-items: flex-start;

}

.block{
    display: blockc;
}

.text .text-post{
    display: grid;
    text-align: left;
    width:auto;
    word-break: normal;
    height: 1rem;
    font-size: .7rem;
    margin-top: .28rem;
    margin-bottom: .78rem;
    line-height: .8rem;
}

.text .date-post{
    margin-top: .02rem;
    height: 1rem;
    font-size: .5rem;
    color: rgb(rgb(42, 42, 42), rgb(42, 42, 42), rgb(42, 42, 42),);
}

/*--- Icon Post ---*/
.button-container{
    display: flex;
    gap: 0.1rem;
}

button{
    padding: 0.125rem 0.25rem;
    font-size: 1rem;
    border: none;
    border-radius: .5rem;
    cursor: pointer;
    background-color: transparent;
    transition: transform 0.3s, background-colo 0.3s;
    display: flex;
    align-items: center;
}

button:hover{
    transform: scale(1.1);
}

#like-button{
    display: flex;
    align-items: center;
}

.comment-button{
    color: #262626;
}


.icon-post{
    margin-top: .5rem;
    display: flex;
    justify-content: space-between
}
.icon{
    height: 1rem;
    width: 1rem;
    font-weight: bold;
}


/*--- Modal Comment ---*/
#modal_comment{
    position: fixed;
    color: #f0f0f0;
    display: grid;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    background-color: #262626;
    padding-top: .8rem;
    border-radius: 1.5rem 1.5rem 0 0;

    transition: 0.3s;
}

.comments{
    display: grid;
    gap: .8rem;
}

.test{
    padding: 1rem;
}

.hidden{
    visibility: hidden;
    position: fixed;
    height: 1px;

    transition: 0.3s;
    transform: translateY(100%);
}

.title{    
    font-family: "Open Sans", serif;
    font-size: .8rem;

}

.linha{
    width: 50%;
    border-bottom: 3px solid;
    border-radius: 1rem;

}

.comment{
    display: flex;
    gap: .25rem;
    align-items: center;
    justify-content: flex-start;
    font-size: .8rem;
    z-index: 1;
}

.comment.open{
    opacity: 1;
    transition: 0.3s;
    transform: translateY(0%);
}

.img_comment{
    width: 1rem;
}
.comment-icon{
    color: #f0f0f0;
}
.paragraph{
    margin-bottom: 0;
    text-align: start;
}

.paragraphAndNickName{
    margin-bottom: 0;
    display: grid;
    justify-items: start;
}
.nick{
    margin-bottom: 0px;
    font-weight: bold;
}

.button_comment{
    margin-left: auto;
}

.line{
    display: grid;
    justify-content: center;
    justify-items: center;
}

/*--- MY COMMENT --*/
.myComment{
    display: flex;
    gap: .9rem;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    padding: .8rem;
}

#MyComment{
    background-color: transparent;
    outline-style: none;
    color: #f0f0f0;
    font-size: .8rem;
    width: 100%;
}

.submit{
    color: #f0f0f0;
}