body {
    background-image: url("images/639542199_1471317384689513_3227602130731469174_n.jpg");
    color: blue;
    font-family: Arial, sans-serif;
    text-align: center;
}
main {
    width: 450px;
    height: auto;
    margin: 10px auto;
}
nav {
    display: flex;
    justify-content: flex-start;
    height: 100px;
    gap: 20px;
    flex-wrap: wrap;
    align-content: space-evenly;
}

nav a:first-child {
    flex: 3;
    transform: translateX(-50px);
}
nav a {
    flex: 1;
    display: inline-block;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px red;

}
nav a:hover {
    background-color: orange;
    transition: 1.5s;
}
.language-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.language-switcher a {
    color: white;
    text-decoration: none;
    font-weight: normal;
}

.language-switcher a:hover {
    color: orange;
}
.titolo {
    color: green;
}
#home {
    border-radius: 20px;
    padding: 20px;
    font-size: 42px;
    margin: 30px;
    width: 500px;
    height: 80px;
    box-shadow: 0px 0px 10px red;
}

#home:hover {
    background-color: greenyellow;
    transition: 1.5s;
}

p {
    font-size: 20px;
    transition: 1.5s;
}
.kompetenzen {
    font-family: Georgia, serif;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
}


p:hover {
    color: orange;
}
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 600px) {
    p {
        font-size: 16px;
    }
}
@media (min-width: 601px) and (max-width: 1024px) {
    p {
        font-size: 18px;
    }
}

button {
    background-color: orange;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #005fa3;
}
/* --- Rechtliches: Impressum / Datenschutz --- */
.site-footer {
    margin: 40px auto 20px;
    padding: 16px;
    font-size: 14px;
}
.site-footer a {
    color: white;
    text-decoration: underline;
}
.site-footer a:hover {
    color: orange;
}
main.legal {
    width: min(720px, 92%);
    text-align: left;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    padding: 24px 28px;
    border-radius: 12px;
}
main.legal h1 { color: greenyellow; }
main.legal h2 { margin: 22px 0 6px; font-size: 18px; }
main.legal a { color: orange; }
main.legal p { font-size: 16px; line-height: 1.6; }
