:root {
    --text-color: #8b8b8b;
    --anchor-color: #5f9dd2
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--anchor-color);
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    color: #7a7a7a
}

h2 {
    font-size: 1.75em;
    line-height: 1.5em;
}

h3 {
    font-size: 1.25em
}

h2 + p {
    font-size: 1.25em;
    margin-top: -0.7em;
    line-height: 1.5em;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    background: rgb(239, 240, 241);
}

#wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: auto;
    width: min(40em, 100vw);
    height: 100vh
}

.card {
    display: block;
    width: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,.05);
    background: #fff;
}

#banner {
    height: 200px;
    background-image: url("assets/mountains.jpg");
    background-position: center -25px;
    background-size: cover;
}

.text {
    padding: 25px 50px;
}

.de, .fr {
    display: none;
}

.language-switcher {
    display: inline-flex;
    gap: 20px;
    margin-top: 20px;
    padding: 0 20px;
    box-shadow: 0 0 rgba(0,0,0,.05);
    background: #fff;
}

.language-switcher button {
    border: 0;
    border-bottom: 5px solid transparent;
    padding: 15px 0 10px 0;
    background: none;
    font: inherit;
    color: inherit
}

.language-switcher button.active {
    border-bottom: 3px solid #6db0ff;
    color:#6db0ff
}