body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

header {
    background-color: #F0F0F0;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.logo img {
    max-width: 150px;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

article {
    background-color: white;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.install-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.install-button:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #333;
    color: white;
}

a {
    color: #white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
.footer-nav {
    text-align: center;
    margin-top: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    display: inline;
    margin: 0 15px;
}

.footer-nav a {
    color: white; /* Set the link color to white */
    text-decoration: none;
    font-weight: bold;
}

.footer-nav a:hover {
    text-decoration: underline;
}