:root {
    --grau: #708090;
    --grün: #90C226;
    --orange: #FFA500;
    --weiß: #F0F0F0;
}

body {
    background-color: #708090;
    font-family: "embarcadero-mvb-pro-condense", sans-serif;
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
    color: black;
    margin: 20px;
    font-size: 2.5vh;
}

.container {
    width: 85%;
    margin: 0 auto;
    padding: 2%;
    background-color: #fff;
    border-radius: 2vw;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        font-size: 1.5vh;
        overflow-wrap: break-word;
    }
}

.button {
    background-color: #708090;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    color: #90C226;
    padding: 1vw 2vw;
    border: none;
    border-radius: 1vw;
    font-size: 3vh;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    margin-right: 20px;
}

.button:hover {
    color: #FFA500;
}

.language img {
    width: 4.5vh;
    height: auto;
}

.language span {
    font-size: 4vh;
}

.language {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.language a {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #90C226;
    gap: 20px;
}

.language a:hover {
    color: #FFA500;
}

.language a:hover img {
    transform: scale(1.1);
}

.link {
    color: var(--grün);
    text-decoration: none !important;
    transition: color 0.5s;
}

.link:hover {
    color: var(--orange);
}