body {
    font-family: Arial, sans-serif;
    background-color: #282c34;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* تعديل المحاذاة لتبدأ من الأعلى */
    min-height: 100vh; /* السماح بتمرير المحتوى */
    margin: 0;
    padding: 20px; /* إضافة padding للتأكد من وجود مسافة حول المحتوى */
    box-sizing: border-box; /* التأكد من أن padding يتم احتسابه داخل العرض والارتفاع */
}

.menu-container {
    text-align: center;
    background-color: #444;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    margin-top: 20px; /* لإضافة مسافة أعلى العنصر */
}

.header-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

h1 {
    margin-bottom: 30px;
}

.menu {
    display: flex;
    flex-direction: column;
}

.menu-item {
    background-color: #61dafb;
    color: black;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: #21a1f1;
}
