body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    background-color: #ff5733;
    color: white;
    text-align: center;
    padding: 15px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.hero {
    text-align: center;
    padding: 50px;
}

.hero img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
}

.menu {
    text-align: center;
    padding: 40px;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.item img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.contact {
    text-align: center;
    padding: 30px;
    background: #ff5733;
    color: white;
}

footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
}
body {
    background: url('background.jpg') no-repeat center center/cover;
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    background: rgba(255, 87, 51, 0.9);
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

nav ul li a:hover {
    background: rgba(200, 50, 20, 0.9);
}
.item p {
    background: rgba(255, 87, 51, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.item p:hover {
    background: rgba(200, 50, 20, 0.9);
}
<style>
    header h1 {
        font-size: 48px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #fff;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    }
</style>
