    @import url('https://fonts.googleapis.com/css2?family=Leckerli+One&display=swap');
    
    * {
        box-sizing: border-box;
    }

    body {
        background-color: var(--base-color);
        margin: 0;
        font-family: Arial;
        overflow: overlay;
    }

    .main {
        padding: 30px;
    }

    .main2 {
        margin-left: 20.5%;
        margin-right: 2%;
        width: auto;
    }

    .header {
        margin: 0;
        position: sticky;
        top: 0;
        background-color: var(--primary-color);
        border-bottom: 2px solid #8d515d;
        z-index: 1;
        height: 50px;
        display: flex;
        color: white;
        width: 100%;
    }

    .padders {
        padding-top: 13px;
    }

    .left {
        padding-left: 50px;
        padding-right: 50px;
        margin: -1%;
    }

    .center {
        margin: 0 auto;
        padding-top: 10px;
    }

    .right {
        float: right;
        font-size: 20px;
        margin: 0; 
    }

    .right img {
        transition: transform 0.3s;
    }

    .right img:hover {
        transform: scale(1.3);
    }

    .header .left a {
        font-size: 30px;
        margin: 0;
        text-shadow: 2px 2px #8d515d;
        font-family: Leckerli One;
        font-weight: normal;
        text-decoration:none;
        color: white;
        padding: 0;
    }

    .header .right a {
        text-decoration: none;
        color: white;
        margin-right: 50px;
    }

    .searchup {
        padding: 5px;
        border-radius:30px;
        width: 400px;
        margin-top: -10%;
        border: 2px inset #8d515d;
    }

    .searchupp {
        border-radius: 50%;
        padding: 4px;
        color: transparent;
        text-shadow: 0 0 0 rgb(67, 45, 45);
    }
    
    .searchupp:hover {
        background-color:#e6dfdf;
    }

    .heading {
        display: inline-block;
    }

    .heading h2{
        left: 20px;
        float: left;
        display: inline;
    }

    .heading p {
        display: inline;
        float: right;
        font-size: 13px;
        padding: 0;
        bottom: 0;
        margin: 0;
        color: red;
    }

    .content {
        padding: 20px;
    }

    .beside, .beside2, .sideways {
		display: flex;
		flex-direction: row;
		gap: 20px;
	}

    .sideways {
        justify-content: flex-start;
    }

    .beside2 {
		gap: 10px;
	}

    .column {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

    .post h2 {
        margin-top: 0;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .post, .guest {
        padding-left: 10px;
        padding-right: 10px;
        border: 1px solid rgb(157, 152, 152);
        border-radius: 20px;
        background-color: var(--post-color);
        word-wrap: break-word;
        color: var(--text-color);
    }

    .postpic {
        border-radius: 20px;
    }

    .guest p, h2 {
        margin: 8px;
    }

    .post p, h4 {
        margin: 5px;
        font-size: 14px;
    }

    .pfp, .pfp2, .pfpbig { 
        border-radius: 50%;
        margin: 0;
        object-fit: cover;
    }

    .pfp {
        width:50px;
        height: 50px;
    }

    .pfp2 {
        width:30px;
        height: 30px;
    }

    .pfpbig {
        width: 130px;
        height: 130px;
    }

    .cover-bg {
        margin:0;
        width: 78%;
        height: 30%;
        border: 1px solid #8d515d;
        border-radius: 30px;
        position: absolute;
        background-image: url('WFTimg/CSCT.png');
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: cover;
        z-index: -1;

    }

    .commentsection {
        margin-top: 0;
        transform: scale(0.9);
    }

    .feed, .profile {
        display: flex;
		flex-direction: column;
        gap: 30px;
        width: auto;
    }

    .profile {
        width: 100%;
    }

    .feed {
        margin-left: 20%;
        margin-right: 20%;
    }


    .views, .hug-btn {
        text-align: center;
        margin: 0;
        font-size: 15px;
        background-color: var(--accent-color);
        border: 1px solid rgb(196, 130, 141);
        padding: 3px;
        padding-bottom: 0;
        height: auto;
        width: 100px;
        border-radius: 20px;
    }

    .hug-btn:after {
        content: 'Send Hug?';
    }

    .hug-btn:hover {
        background-color: rgb(189, 127, 137);
    }

    .hug-btn:focus:after, .hug-btn:active:after{
        content: 'Hug sent!';
        display: block;
    }

    .hug-btn:visited {
        content: "Hug Sent!";
    }

    .like-btn,.dislike-btn{
        cursor: pointer;
        outline: 0;
        color: #AAA;
        font-size: 12px;
        border-radius: 50px;
        padding: 10px;
        background-color: white;
        border:1px solid rgb(157, 152, 152);
    }

    .like-btn:hover,.dislike-btn:hover {
        background-color:#dfdfdf;
    }

    .like-btn:focus,.dislike-btn:focus {
        outline: none;
    }

    .like-btn.liked {
        background-color: green;
        color: white;
    }

    .dislike-btn.disliked {
        background-color: red;
        color: white;
    }

    .gallery {
        display: grid;
        grid-template-columns: auto auto;
        grid-gap: 5px;
    }
    
    .gallery-item {
        margin: 0;
        width: auto;
        height: auto;
    }

    .gallery-item img {
        border-radius: 20px;
    }

    .post a img:hover {
        filter:brightness(0.8);
    }

    .gallery-item img {
        object-fit: cover;
        display: block;
    }

    .sidebar, .left-side {
        padding: 10px;
        border: 1px solid #9d9898;
        border-radius: 20px;
        height: 88%;
        width: 18%;
        margin: 1.1%;
        position: fixed;
        z-index: 1;
        background-color: var(--post-color);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .sidebar h4 {
        margin:2%;
    }

    .left-side {
        padding-top: 10px;
        padding-bottom: 5px;
        font-size: 20px;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        box-shadow: 0 0 5px #b97e8a inset;
        border-radius: 30px;
        background-color:#e7b4b9;
    }

    ::-webkit-scrollbar-thumb {
        background-color:#8d515d;
        border-radius: 30px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color:#64353e;
    }

    ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-color);
        padding: 15px;
        background-color: var(--post-color);
        border-radius: 15px;
        margin: 5px;
        transition: 0.3s ease;
        font-weight: bold;
    }

    ul a {
        text-decoration: none;
        font-weight: bold;
        color: black;
    }


    li:hover, ul > img:hover {
        filter: brightness(0.95);
    }

    .chatbox {
        background-color: white;
        border-radius: 20px;
        width: 100%;
        height: 100%;
        margin: 1.1%;
        padding: 10px 25px;
        border: 1px solid #9d9898;
    }

    .darker {
        border-color: #ccc;
        background-color: #ddd;
    }

    .chatbox::after {
        content: "";
        clear: both;
        display: table;
    }

    .chatbox .pfp3 {
        float: left;
        width: 60px;
        height: 60px;
        margin-right: 20px;
        object-fit: cover;
        border-radius: 50%;
    }

    .time-right {
        float: right;
        color: #aaa;
    }

    .active {
        background-color: #ebe5e5;
    }

    .gif {
        object-fit: cover;
        scale: 90%;
        width: auto;
        height: auto;
    }

    .gif:hover {
        filter: brightness(0.8);
    }


    body:before {
        content: " ";
        height: 100vh;
        width: 100vw;
        display: block;
        position: fixed; 
        top: 0; 
        left: 0; 
        z-index: 100;
        background-image: url('WFTimg/CSCT.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position:center;
        animation: yourAnimation 1s ease 1s 1 normal forwards;
        pointer-events: none;}
        @keyframes yourAnimation { 0.0%{ opacity: 1;} 75%{ opacity: 1; } 100%{ opacity: 0;} 
    }

    :root {
        
        --post-color: white;
        --base-color: #f4e3e6;
        --base-variant: #f4e3e6;
        --text-color: black;
        --secondary-text:white;
        --primary-color: #c98c91;
        --accent-color: pink;

    }