*{
    margin: 0;
}
body{
    background-color: #ffeedd;
}
/* header part starts*/
.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;
}

/* signup signin popup */
.overlay{
    margin: 0;
    padding: 0%;
    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;
    background-color: blue;
    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;
    background-color: blue;
    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;
}

/*Post part starts here*/

.allPosts{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 14px;
}
.post{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 26px;
    background-color: white;
    height: auto;
    width: 40vw;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 2px rgba(94, 94, 94, 0.678);
    transition: box-shadow 0.3s ease;
}
.post:hover {
    box-shadow: 1px 1px 28px 1px rgba(94, 94, 94, 0.9); /* New box shadow on hover */
}
.name{
   padding: 7px;
   font-size: larger;
}
.content{
    background-color: rgb(210, 210, 210);
    margin: 0;
    padding: 0;
    border-top-right-radius:15px;
    border-bottom-right-radius: 15px;
}
.content-discription, .title{
    font-size: larger;
}
.content-discription{
    margin: 0 10px;
    padding: 0;
}
.title-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 20px;
    padding: 0;
}
.title{
    padding: 0px;
    margin-top: 10px;
    margin-bottom: 8px;
    margin-left: 0px;
    margin-right: 10px;
    font-weight: 550;
}

.ellipsis-icon{
    display: flex;
    justify-content: right;
    margin-right: 20px;
    margin-bottom: 10px;
}
.ellipsis-icon {
    color: inherit; /* Keeps the color inherited from the parent */
    text-decoration: none; /* Removes the underline */
}

.fas{
    cursor: pointer;
}


/* DELETE SECTION */
.overlay{
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.608);
    z-index: -1;
   opacity: 0;
   transition: 0s;
}
.showoverlay{
    opacity: 1;
    z-index: 0;
}
.delete-section{
    transition: 0.005s;
    padding: 0px;  
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    height:100px;
    width: 380px;
    box-shadow: 0px 0px 10px 1px;
    padding-bottom: 20px;
}
.showdelete-section{
    top: 50%;
    z-index: 1;
}
.buttons{
    margin: 0px 20px;
    display: flex;
    justify-content: space-between;
    
}
.yesButton{
    background-color: green;
    height: 28px;
    width: 50px;
    cursor: pointer;
    font-weight: bold  ;
    font-size: 15px;
}
.noButton{
    background-color: red;
    height: 28px;
    width: 50px;
    cursor: pointer;
    font-weight: bold  ;
    font-size: 15px;
}
.delete-section h3{
    text-align: center;
    margin: 20px;
 
}