<style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            text-align: center;
            background-color: #fff3e0;
        }
        header {
            background: #000;
            color: #fff;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            width: 90px;
        }
        nav ul {
            list-style: none;
            padding: 0;
        }
        nav ul li {
            display: inline;
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }
        .hero {
            background-image: url('hero.png') no-repeat center center/cover;
            color: white;
            padding: 100px 20px;
            text-shadow: 2px 2px 5px black;
            animation: fadeIn 2s;
        }
        
        p {
  font-weight: bold;
  font-size: 1.5em;
  color: black;
  text-shadow: 0.07em 0.07em 0.05em black;
  background-image: url('.hero.png') no-repeat center center/cover;
  background-color: transparent;
}

div {
  background-image: url("hero.png");
}

.cats-and-stars {
  background-image: url("hero.png"));
  background-color: transparent;
}

        .btn {
            display: inline-block;
            background: #ff6600;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            font-size: 20px;
            border-radius: 5px;
            transition: transform 0.3s;
        }
        .btn:hover {
            transform: scale(1.1);
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .menu-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
        }
        .menu-image {
            width: 50%;
            max-width: 500px;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .menu-image:hover {
            transform: scale(1.05);
        }
        form {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }
        form input, form textarea {
            width: 80%;
            max-width: 400px;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        form button {
            background: #ff6600;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s;
        }
        form button:hover {
            background: #e65c00;
        }
        footer {
            background: #fff;
            color: white;
            padding: 15px;
            margin-top: 20px;
        }
    </style>