@charset "utf-8";

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
}

header {
    background-image: url("../img/header-bg.jpg");
    background-size: cover;
    background-position: left bottom;
    color: white;
    position: fixed;
    width: 100%;
    height: 300px;
    top: 0px;
    left: 0px;
    padding: 0px;
    font-size: 18px;
    border: none;
    background-color: #0073e6;
    color: white;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    line-height: 0.2;
    font-size: 4em;
    text-shadow:1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000,  0-1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
}

header h2 {
    line-height: 0.0;
    font-size: 1.2em;
    text-shadow:1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 1px 0 #000,  0-1px 0 #000, -1px 0 0 #000, 1px 0 0 #000;
}

main {
    margin-top: 300px;
}

footer {
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
}

.menu-button {
    position: fixed;
    top: 310px;
    left: 10px;
    padding: 10px;
    font-size: 18px;
    border: none;
    background-color: #0073e6;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    z-index: 40;
}

.sidebar {
    position: fixed;
    left: -290px;
    top: 300px;
    width: 250px;
    height: 100vh;
    background-color: #333;
    color: white;
    padding: 20px;
    transition: left 0.3s ease-in-out;
    z-index: 30;
}

.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
}

.sidebar a:hover {
    background-color: #444;
}

.language-switch {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0073e6;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.language-switch a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.language-switch a:hover {
    text-decoration: underline;
}

