@font-face{
	font-family:KalamehRegular;
	font-style:normal;
	font-weight:400;
	src:url('KalamehRegular.ttf') format('truetype');
    }
        body {
            margin: 0;
            background: #ffffff;
            font-family: KalamehRegular;
        }
a {
    text-decoration: none;
    color: #333;
}
        /* ---- TOP BACKGROUND (HEADER + AREA BELOW IT) ---- */
        .top-section {
            background:linear-gradient(to bottom, #dd44dd 0%, #ffffff 60%);
        }

        /* ---------------- HEADER ---------------- */
        .header {
            padding: 15px 0;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            color: #000;
        }

        .header img {
            width: 32px;
            height: 32px;
            cursor: pointer;
            filter: brightness(0) invert(1);
        }

        .student-name {
            font-size: 18px;
            font-weight: bold;    margin-right: 10px;
        }

        /* ---------------- MENU GRID ---------------- */
        .menu-grid {
            padding: 10px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 10px;
        }

        .item {
            background: white;
    padding: 15px 10px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 2px 6px rgb(0 0 0 / 19%);
    cursor: pointer;
    transition: 0.25s;
        }

        .item:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
        }

        .item img {
            width: 60px;
        }

        .item p {
            margin: 0;
            font-size: 13px;
            color: #444;
        }

        /* Mobile responsive */
        @media (max-width: 600px) {
            .menu-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media screen and (min-width: 600px) {
  body {
    max-width: 400px;
    margin: 0 auto;
  }
}