/* Global styles for body */
body {
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Logo styles */
.logo {
    width: 150px;
    margin-bottom: 20px;
    display: block;
}

/* Heading */
h1 {
    margin-left:auto;
    margin-right:auto;
    font-size: 1.8em;
    color: #8B0000;
    margin-bottom: 20px;
}

/* Container for the menu items */
.container {
    max-width: 800px;
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: white;
    text-align: center;
}

/* Menu item styles */
.menu-item {
    background-color: #b91a1a;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.2s;
}

.menu-item:hover {
    background-color: #484848;
    transform: translateY(-5px);
}

.spacer {
  flex-grow: 1;
  /* This makes it expand to fill space, but it remains invisible */
  visibility: hidden; /* or you can use opacity: 0; */
}

/* Footer */
footer {
    background-color: #8B0000;
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 14px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    bottom: 0;
    left: 0;
}

