* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --day-color: #282828;
    --night-color: #F0F8FF;
    --font-color: var(--day-color);
    --alternative-color: var(--night-color);
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body {
    background: linear-gradient(180deg, #0669BF 0%, #5EBAF2 50%, #99D9F2 100%);
}

p {
    font-family: bd-orange-variable, sans-serif;
    font-variation-settings: "wght" 800;
}

main {
    display: flex;
    align-items: center;
    flex-direction: column;
}

main,
#team {
    width: 80vw;
}

header {
    justify-content: center;
    padding-top: 3vw;
}

h1 {
    font-family: bd-orange-variable, sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 80px;
    color: var(--font-color);
}

h2 {
    font-family: bd-orange-variable, sans-serif;
    font-variation-settings: "wght" 600;
    font-size: 40px;
    color: var(--font-color);
}

ul {
    font-family: darkmode-on, sans-serif;
    padding-left: 15px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#team {
    display: flex;
    margin-top: 2vw;
    justify-content: space-between;
}

.personen,
.bilder {
    width: 20vw;
}

.bilder {
    height: 30vw;
    margin-bottom: 1vw;
}

#zusammen {
    margin-top: 5vw;
    align-self: self-start;
}

button {
    font-size: 30px;
    color: var(--alternative-color);
    background-color: var(--font-color);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10vw;
    margin-bottom: 10vw;
}

@media (max-width: 768px) and (min-width: 601px) {

    main,
    #team {
        width: 90vw;
    }

    h2 {
        font-size: 30px;
    }

    ul {
        padding-left: 15px;
        font-size: 15px;
    }

    .personen,
    .bilder {
        width: 25vw;
    }

    .bilder {
        height: 37.5vw;
    }
}

@media (max-width: 600px) {
    #team {
        flex-direction: column;
        align-items: center;
    }

    .personen {
        margin-bottom: 5vw;
    }

    .personen,
    .bilder {
        width: 50vw;
    }

    .bilder {
        height: 75vw;
    }

}

@media (max-width: 450px) {
    button {
        font-size: 20px;
        padding: 10px;
        border-radius: 5px;
    }
}