body {
            background-color: #fff5f7;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

      
        .container {
            background: white;
            padding: 30px;
            width: 320px;
            border-radius: 15px;
            border: 2px solid pink;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            text-align: center;
        }

        h1 {
            font-size: 20px;
            color: #333;
            margin-bottom: 5px;
        }

        h2 {
            font-size: 16px;
            color: #ff69b4; 
            margin-top: 0;
            margin-bottom: 25px;
            font-weight: normal;
        }
        .menu-links {
            display: flex;
            flex-direction: column;
            gap: 12px; 
        }

        .menu-links a {
            text-decoration: none;
            color: #555;
            background: #fffafa;
            padding: 12px;
            border: 1px solid pink;
            border-radius: 8px;
            font-weight: 600;
            transition: 0.3s;
        }
        .menu-links a:hover {
            background-color: pink;
            color: white;
            transform: translateY(-2px);
        }

        .footer {
            margin-top: 20px;
            font-size: 12px;
            color: #bbb;
        }