* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #202020;
    font-weight: 400;
    font-size: 16px;
    background-color: white;
    margin: 0 24%;
}

header {
    justify-content: center;
    margin-top: 1.5rem;
}

.logo-img {
    display: flex;
    justify-content: center;
}

img {
    width: 150px;
}

section {
    margin: 1.5rem 0;
}

#terms-and-conditions {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

h1 {
    font-size: 40px;
    font-family: "Sofia Sans", sans-serif;
    word-wrap: break-word;
    text-align: center;
    margin-bottom: 2rem;
}

h2 {
    font-size: 28px;
    font-family: "Sofia Sans", sans-serif;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 20px;
    font-family: "Sofia Sans", sans-serif;
    margin-bottom: 1rem;
}

p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

#ausrichter {
    text-align: center;
}

li {
    margin-left: 5rem;
}

a {
    color: #f8631b;
}

a:hover {
    color: #c84a00;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
    body {
        margin: 0 10%;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 16px;
    }

    li {
        margin-left: 2rem;
    }

    img {
        width: 100%;
        max-width: 120px;
    }
}
