/* styles/main.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('../images/background-min.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

header {
    background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
    color: white;
    padding: 1rem;
}

.language-switcher {
    display: flex;
    justify-content: center;
}

.language-switcher a {
    margin: 0 10px;
    padding: 5px 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.language-switcher a:hover,
.language-switcher a.active {
    background-color: rgba(85, 85, 85, 0.8); /* Semi-transparent background */
}

main {
    flex: 1;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    margin-top: 20px;
}

h1 {
    color: #333;
}

h2 {
    color: #666;
}

footer {
    background-color: rgba(51, 51, 51, 0.8); /* Semi-transparent background */
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
}

.download-links {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}
.download-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.download-links img {
    width: 150px;
    height: auto;
}
