/* Basic styles for the Eidux website */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.container {
    max-width: 960px;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.intro {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.welcome-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}

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

.lang-switcher {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

#lang-select {
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ced4da;
}
