* {
    box-sizing: border-box;
    margin: 0px;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-family: Open Sans, sans-serif;
}

body {
    position: relative;
    background-image: url('image/Desktop_Hintergründe_202611.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    text-align: center;
    width: 100vw;
}

footer {
    position: fixed;
    bottom: 0;
    color: #fff;
    padding: 5px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 100px;
    background-color: #64798cb0;
    padding: 20px;
    border-radius: 15px;

}

.container img {
    margin: 10px;
}

a {
    text-decoration: none;
    margin: 10px;
    padding: 0;
    color: #fff;
}

h1 {
    text-align: center;
    color: #fff;
}

button {
    width: 300px;
    height: 50px;
    font-size: 12pt;
    background-color: rgba(12, 35, 67, 1);
    color: #fff;
    border-style: none;
    border-radius: 5px;
}

button:hover {
    cursor: pointer;
    background-color: rgba(10, 22, 39, 0.8);
}

img {
    /* max-width: 30%; */
    width: 150px;
    /* min-width: 225px; */
    margin: 8px;
}

@media screen and (max-width: 800px) {

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .container {
        top: 50px;
        width: 90vw;
    }

    .container>a>button {
        width: 80vw;
    }

}