header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin-right: 15px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

header nav ul li a:hover {
    text-decoration: underline;
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    text-align: center;
}

.container {
    padding: 50px 20px;
}

header {
    background: #ff5733;
    color: white;
    padding: 40px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu {
    background: #fff;
    padding: 50px 0;
}

.pizza-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust min-width for larger screens */
    gap: 20px;
}


.pizza {
    background: #ffcc00;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.pizza img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.order {
    background: #f4f4f4;
    padding: 50px 0;
}

form {
    display: grid;
    gap: 15px;
    max-width: 400px;
    margin: auto;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #ff5733;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #cc4629;
}

footer {
    background: #222;
    color: white;
    padding: 20px 0;
    margin-top: 20px;
}

footer .social-media a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    margin-right: 10px;
}

footer .social-media a:hover {
    text-decoration: underline;
}


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    text-align: center;
}

.container {
    padding: 50px 40px; /* Increased padding for larger screens */
}


button {
    background: #ff5733;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease; /* Added transform */
}

button:hover {
    background: #cc4629;
    transform: scale(1.05); /* Adds scaling effect */
}



/* General styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    text-align: center;
}

/* Container padding */
.container {
    padding: 50px 20px;
}

/* Header and menu section */
header {
    background: #ff5733;
    color: white;
    padding: 40px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* General styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
    text-align: center;
}

/* Container padding */
.container {
    padding: 50px 20px;
}

/* Header and menu section */
header {
    background: #ff5733;
    color: white;
    padding: 40px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Pizza emoji/image sliding */
.pizza-slide {
    position: absolute;
    top: 280px; /* Adjust the top value to fit below the paragraph */
    right: -100px;
    font-size: 2rem;
    animation: slidePizza 10s linear infinite;
}

@keyframes slidePizza {
    0% {
        right: -100px;
    }
    50% {
        right: 50%;
        transform: translateX(80%);
    }
    100% {
        right: 100%;
    }
}

/* Menu section */
.menu {
    background: #fff;
    padding: 50px 0;
}

.pizza-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pizza {
    background: #ffcc00;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for pizza items */
.pizza:hover {
    transform: scale(1.05); /* Slightly enlarge the pizza images */
}

.pizza img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.pizza h3 {
    font-weight: 600;
    color: #333;
}

.pizza p {
    color: #777;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 20px 0;
    margin-top: 20px;
}

footer .social-media a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    margin-right: 10px;
}

footer .social-media a:hover {
    text-decoration: underline;
}
