html, body {
    margin:0;
    padding:0;
}

a {
    text-decoration: none;
}
a:hover {
    cursor: pointer;
}

body {

    font-size: 62.5%;
    width: 100dvw;
    height: 100dvh;
    background: black url("../images/bg.webp") no-repeat center center;
    background-clip: content-box;
    background-size: auto;
}

.wrapper {
    width: 100dvw;
    height: 100dvh;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper .content {
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
}

.wrapper .content h1{
    color: #fff;
    font-size: 5em;
    font-family: system-ui;
}

.wrapper .content img{
    max-width: 10dvw;
    height:auto;
    display: block;
    margin: 0 auto 3em;
}

.wrapper .content a.button {
    display: inline-block;
    max-width: fit-content;
    background: #1a1a1a;
    border-radius: 5px;
    padding: 1em;
    font-size: 2em;
    color: #fff;
    text-align: center;
    font-family: system-ui;
    margin: auto;
}

footer .impressum {
    position: absolute;
    bottom: 2dvh;
    color: #fff;
    text-align: center;
    font-family: system-ui;
    font-size: 1.3em;   
    width: 100dvw;

}

footer nav a {
    color:#fff;
    padding:0 2em;
}