body{
    margin: 0;
}
.container{
    margin: 27px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
   
}
/*title*/
.title{
    text-align: center;
}

/*name and edit part*/
.nameAndEdit-part{
    display: flex;
    justify-content: space-between;
    
}
.authorName{
    font-weight: 500;
    font-size: larger;
}
.editbtn{
    font-family: "Ubuntu Mono", monospace;
    font-size: 17px;
    background-color:rgb(232, 32, 105);
    color: white;
    font-weight: bold;
    height: 45px;
    width: 110px;box-shadow: 1px 10px 30px 3px pink;
    cursor: pointer;
}
/*content section*/
.content-section .discription{
    font-size: small;
    margin: 0;
}
.content-section{
    margin-bottom: 30px;
}
/*like section*/
.likebtn{
    font-size: 17px;
    font-family: "Ubuntu Mono", monospace;
    background-color:rgb(232, 32, 105);
    color: white;
    font-weight: bold;
    height: 42px;
    width: 95px;box-shadow: 1px 10px 30px 3px pink;
    cursor: pointer;
}
.numberOfLikes{
    font-size: smaller;
    font-family: "Ubuntu Mono", monospace;
}
/*comment section */
#commentform{
    width: 60vw; /* Set the width as needed */
    height: 200px;
    padding: 0%;
    margin: 20px 0px;
}
.postComments{
    display: flex;
    flex-direction: column;
}
.commentbtn{
    font-size: 19px;
    font-family: "Ubuntu Mono", monospace;
    background-color:rgb(232, 32, 105);
    color: white;
    font-weight: bold;
    height: 45px;
    width: 105px;
    box-shadow: 1px 10px 30px 3px pink;
    cursor: pointer;
    
}
.allcomenttext{
    font-family: "Ubuntu Mono", monospace;
    font-size: 20px;
    font-weight: bold;
}
.allCommentsPosted{
    background-color: rgb(151, 151, 151);
    padding: 10px ;
    
}
.singleBlockComment{
   padding: 15px 5px;
   margin: 10px 0px;
    background-color: white;
    font-family: "Ubuntu Mono", monospace;
    font-size: 19px;
}





.header{
    display: flex;
   
    justify-content:space-between;
    margin: 12px;
}
.logo{
    margin: 0px;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.scribblertext {
    margin: 0;
    padding: 0;
    font-family: "Montez", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 46px;
    color: blue;
}
.subheading p{
    margin: 0px;
    padding: 0px;
    font-family: "Ubuntu Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: large;
    font-weight:500;
}
.signup , .signin {
    cursor: pointer;
    background-color: rgb(37, 37, 255);
    color: white;
    font-weight: 400;
    font-size: 15px;
    height: 44px;
    width: 110px;
    margin-left: 10px;
    font-family: "Ubuntu Mono", monospace;
    font-size: 18px;
    font-weight: 600;
}

/* popup signup  */
.overlay{
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.608);
    z-index: -1;
   opacity: 0;
   transition: 0.5s;
}
.showoverlay{
    opacity: 1;
    z-index: 1;
}
.signupform{
    transition: 0.6s;
    padding: 20px;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    height: 60vh;
    width: 350px;
    box-shadow: 0px 0px 10px 1px;
    
}
.showsignupform{
    top: 50%;
    z-index: 1;
   
}
.signupform div{
    margin-top: 15px;
}
.signupform p{
    margin: 0;
    padding: 0;
    font-size:xx-large;
}
.signupform input{
    width: 100%;
    height: 35px;
    margin-top: 5px;
}
.signupform button {
    cursor: pointer;
    width: 100%;
    height: 35px;
    margin-top: 20px;
    color: white;
    font-size:medium;
    background-color: green;
}
.signupform label {
    font-size: 20px;
    padding-bottom: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
}
.signupform .crosslogo{
    cursor: pointer;
    position: absolute;
    right: 17px;
    top: 8px;
    font-size: 40px;
    font-weight:900;
    text-align: center;
}

.signinform{
    transition: 0.6s;
    padding: 20px;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    height: auto;
    width: 360px;
    box-shadow: 0px 0px 10px 1px;  
}
.showsigninform{
    top: 50%;
    z-index: 1;
}
.signinform div{
    margin-top: 15px;
}
.signinform p{
    margin: 0;
    padding: 0;
    font-size:xx-large;
}
.signinform input{
    width: 100%;
    height: 35px;
    margin-top: 5px;
}
.signinform button {
    cursor: pointer;
    width: 100%;
    height: 35px;
    margin-top: 20px;
    color: white;
    font-size:medium;
    background-color: green;
}
.signinform label {
    font-size: 20px;
    padding-bottom: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 100;
}
.signinform .crosslogo{
    cursor: pointer;
    position: absolute;
    right: 17px;
    top: 8px;
    font-size: 40px;
    font-weight:900;
    text-align: center;
}
.signinform h4{
    text-align: center;
}
.signinform h4 a{
    cursor: pointer;
    color: blue;
}
