
/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1rem;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #4CAF50;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}




/* Container to hold buttons */
.download-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

/* Button styling */
.download-button {
    display: flex;
    align-items: center;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.download-button:hover {
    background-color: #45a049;
}

/* Image inside the button */
.button-image {
    width: 30px; /* Adjust size as needed */
    height: 40px;
    margin-right: 10px;
    border-radius: 4px;
}
