            body {
                font-family: "Arial";
                color: #040110;
                background: #ffffff;
                font-size: 14px;
                cursor: url("../cursors/cur_default.cur"), auto;
                margin: 0;
                padding: 0;
                display: flex;
                justify-content: center;
                align-items: center;
                min-height: 100vh;
                background-image: url("../backgrounds/bg_bluedots2.png");
                background-size: 130px;
            }

            h1 {
                font-size: 20px;
            }

            a {
                color: #02acd7;
                text-decoration:none;
                cursor: url("../cursors/cur_link.cur"), auto;
                transition: color 0.2s ease;
            }

            a:hover {
                color: #3a8ea4;
                cursor: url("../cursors/cur_link.cur"), auto;
            }

            .corkboard {
                margin: auto;
                padding: 20px;
                width: 400px;
                min-width: 300px;
                max-width: 90%;
                border: 4px solid #543323;
                border-radius: 10px;
                background-image: url("../backgrounds/bg_corkboard.jpg");
                background-size: 250px;
            }

            .grid {
                margin: 10px;
                padding: 15px;
                background-color: #ffffff;
                background-image: url("../backgrounds/bg_grid.png");
                background-size: 17px;
                box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.573);
                border-radius: 1px;
            }
            

            * {
                box-sizing: border-box;
            }

            ::-webkit-scrollbar {
                width: 10px;
            }

            ::-webkit-scrollbar-track {
                background: #f1f1f1;
            }

            ::-webkit-scrollbar-thumb {
                background: #02acd7;
            }

            ::-webkit-scrollbar-thumb:hover {
                background: #3a8ea4;
            }

            #statuscafe {
                padding: .5em;
                background-color: azure;
                border: 1px solid #0d65a0;
            }
            #statuscafe-username {
                margin-bottom: .5em;
            }
            #statuscafe-content {
                margin: 0 1em 0.5em 1em;
            }

            @keyframes hover {
                0%, 100% { transform: translateY(5px) rotate(1deg); }
                50% { transform: translateY(-5px) rotate(1deg); }
            }

            @keyframes hover2 {
                0%, 100% { transform: translateY(5px) rotate(-1deg); }
                50% { transform: translateY(-5px) rotate(-1deg); }
            }


