: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;
}

.main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}

.circle-row {
    display: flex;
    align-items: center;
    margin-bottom: 1vw;
    width: 100%;
}

.image-container {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-container {
    position: relative;
    width: 6vw;
    height: 6vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-icon {
    position: absolute;
    width: 2vw;
    height: 2vw;
    transition: transform 0.3s;
}

@media screen and (max-width: 768px) {
    .circle-icon {
        width: 6vw;
        height: 6vw;
    }
    .circle-container {
        margin-top: 10vw;
        margin-left: 5vw;
        width: 15vw;
        height: 15vw;
    }
}

.circle-icon:hover {
    transform: scale(1.2);
}

.text-container {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.text-content {
    line-height: 1.5;
    padding-left: 1vw;
}

.logo-img {
    height: 3.5vw;
    transition: transform 0.2s;
}

@media screen and (max-width: 768px) {
    .logo-img {
        height: 8vw;
    }
}

.logo-img:hover {
    transform: scale(1.1);
}

.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);
}
