body {
            font-family: Arial, sans-serif;
            background-color: #490609;
            margin: 0;
            padding: 20px;
            color: white;
        }
        h1 {
            text-align: center;
        }
        .recipe {
            background: #780a0f;
            margin: 20px 0;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        img {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 0 auto;
            border-radius: 5px;
            margin-right: 10px;
            margin-left: -10px;
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #490609;
            padding: 10px 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        .header img {
            width: 144px;
            height: 40px;
        }
        .buttons {
            display: flex;
            gap: 15px;
        }
        .button {
            padding: 10px 20px;
            color: white;
            background-color: gold;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .button:hover {
            background-color: darkgoldenrod;
        }
        .copyright {
            text-align: center;
            margin-top: 20px;
            padding: 10px;
            background-color: #490609;
            position: relative;
        }

        
        @media (max-width: 600px) {
            .buttons {
                flex-direction: row;
                justify-content: center;
            }
            .button {
                flex: 1;
                text-align: center;
            }
        }
        .content {
            padding-top: 30px;
