
        html, body {
    cursor: url("cursor.ico"), default;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

    body {
  font-family: "Verdana", Sans-Serif;
  font-style: normal;
    font-weight: 100;
font-style: normal;
            background-color: #fcfbff;
            background-image: 
                linear-gradient(45deg, #e6f3ff 25%, transparent 25%),
                linear-gradient(-45deg, #e6f3ff 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #e6f3ff 75%),
                linear-gradient(-45deg, transparent 75%, #e6f3ff 75%);
            background-size: 120px 120px;
            background-position: 0 0, 0 60px, 60px -60px, -60px 0px;
            animation: moveBackground 5s linear infinite;
        }

        @keyframes moveBackground {
            0% {
                background-position: 0 0, 0 60px, 60px -60px, -60px 0px;
            }
            100% {
                background-position: 120px -120px, 120px -60px, 180px -180px, 60px -120px;
            }
        }

        .container {
            display: flex;
            min-height: 100vh;
        }

        .sidebar {
            width: 200px;
            height: 100vh;
            padding: 20px;
            align-items: center;
            justify-content: center;
                display: flex;
    flex-direction: column;
    align-items: center;
      position: sticky;
  top: 0;
    gap: 20px;
        }

        .sidebar-text {
            font-style: italic;
            color: #666;
            font-size: ;
        }

        .main-content {
            flex: 1;
            padding: 40px;
            background-color: transparent;
        }

        .header {
            text-align: center;
            margin-bottom: 60px;
  position: sticky;
  top: 35px;
        }

        .logo {
            max-width: 900px;
            margin-bottom: -30px;
            margin-top: -10px;
            width: 100%;
            height: auto;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            max-width: 650px;
            margin: 0 auto;

        }

        .grid-item {
            text-align: center;
        }

        .grid-item a {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.2s;

        }

        .grid-item a:hover {
            transform: scale(1.05);
        }

        .grid-image {
            width: 100%;
            aspect-ratio: 1;
            background-color:;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-style: italic;
            color: ;
            font-size: 18px;
        }

        .grid-image img {
    width: 100%;
    height: 100%;
    object-fit: contain ;
}

        .grid-item h2 {
            font-size: 16px;
            font-weight: 700;
            color: #000;
        }

        @media (max-width: 968px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .sidebar {
                display: none;
            }
            
            .logo {
                font-size: 48px;
            }

            .grid {
                grid-template-columns: 1fr;
            }
        }