body {
    font-family: sans-serif;
    margin: 0;
    background-color: #333;
    color: #e50914;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

header {
    background-color: #e50914; 
    color: white;
    padding: 20px 10px;
}

header h1 {
    margin-top: 0;
}

.download-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    flex-grow: 1; 
}

.download-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 340px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
}

.download-card h2 {
    margin-top: 0;
    color: #00000;
}

.download-card .icon {
    margin: 15px 0;
}

.download-card .icon img {
    width: 75px; 
    height: auto;
}

#windows-card .icon img {
    width: 80px; 
    height: auto;
}

.download-card .icon svg {
    width: 50px;
    height: 50px;
    fill: #333; 
}

.download-card p {
    margin-bottom: 20px;
    color: #333;
}

.download-btn {
    display: inline-block;
    background-color: #28a745; 
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #218838; 
}

footer {
    background-color: #333;
    color: white;
    padding: 15px 10px;
    margin-top: auto; 
    font-size: 0.9em;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .download-options {
        flex-direction: column;
        align-items: center;
    }

    .download-card {
        width: 90%;
        max-width: 390px; 
    }
}