body {
	font-family: sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

        header {
            background-color: #fff;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .logo {
            max-width: 200px; /* Adjust as needed */
            height: auto;
        }

        .download-buttons {
            margin-top: 30px;
        }

        .download-button {
            display: inline-block;
            margin: 10px;
        }

        .download-button img {
            max-width: 150px; /* Adjust as needed */
            height: auto;
            border-radius: 8px;
            transition: transform 0.2s ease-in-out;
        }

        .download-button img:hover {
            transform: scale(1.1);
        }

        footer {
            margin-top: 50px;
            padding: 20px;
            background-color: #333;
            color: #fff;
            text-align: center;
        }
