/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #111111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px; /* Adds some space around the content */
}

.container {
    max-width: 600px;
    padding: 30px;
}

/* Logo */
.logo {
    width: 200px;
    margin-bottom: 40px; /* Increased space */
}

/* Headings */
h1 {
    font-size: 28px;
    margin-bottom: 30px; /* Increased space */
}

h2.order-now {
    font-size: 24px;
    margin-top: 50px; /* More space above */
    margin-bottom: 30px; /* More space below */
    color: #fff; /* Highlighted text */
}

/* Opening Hours */
.hours {
    font-size: 18px;
    margin-top: 40px; /* Increased space from links */
    margin-bottom: 20px;
}

/* Links */
.links {
    display: flex;
    justify-content: center;
    gap: 40px; /* Increased spacing between logos */
    margin-top: 20px; /* More spacing above */
}

.links img {
    width: 90px;
    transition: transform 0.3s ease;
}

.links img:hover {
    transform: scale(1.1);
}
