body {
    font-family: 'EB Garamond', serif;
    transition: background-color 0.3s, color 0.3s;
    text-align: left;
    font-size: 1.2rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

#theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

/* Dark Mode (Default) */
body.dark-mode {
    background-color: #313330;
    color: #ffffff;
}

#theme-toggle.dark-mode {
    background-color: #ffffff;
    color: #121212;
    border: 1px solid #121212;
}

/* Light Mode */
body.light-mode {
    background-color: #ffffff;
    color: #121212;
}

#theme-toggle.light-mode {
    background-color: #121212;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.language-selector {
    font-family: 'EB Garamond', serif;
    text-align: center;
    font-size: 0.9rem;
}

body.dark-mode .language-selector a {
    color: lightgreen;
}

@media (max-width: 600px) {
    body {
        font-size: 1rem;
    }

    .container {
        padding: 1rem;
    }
}