html,
body{
    margin:0;
    height:100%;
    font-family:"Inter",Arial,Helvetica,sans-serif;
    background:#222 url("../images/background-tile.png") repeat;
}

body{
    color:#222;
}

.home{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:calc(100vh - 100px);
}

.foreground{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.foreground img{
    display:block;
    max-width:600px;
    width:100%;
    height:auto;
}

.text-group{
    margin-top:25px;      /* Abstand zum Logo */
    text-align:center;
}

.text{
    color:#15213B;
    font-size:2rem;
    font-weight:600;
    letter-spacing:.03em;
    text-shadow:
        0 0 4px rgba(255,255,255,.95),
        0 0 8px rgba(255,255,255,.75);
}

.text2{
    margin-top:8px;
    color:#15213B;
    font-size:2rem;
    font-weight:600;
    letter-spacing:.03em;
    text-shadow:
        0 0 4px rgba(255,255,255,.95),
        0 0 8px rgba(255,255,255,.75);
}

.page{
    min-height:calc(100vh - 44px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    box-sizing:border-box;
}

main{
    max-width:900px;
    width:100%;
    background:rgba(255,255,255,.92);
    border-radius:10px;
    padding:30px;
    line-height:1.6;
    box-sizing:border-box;
}

a,
a:visited{
    color:#222;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

footer{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    height:44px;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(8px);
    border-top:1px solid rgba(0,0,0,.15);
}

.footer-content{
    height:44px;
    max-width:900px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 10px;
    box-sizing:border-box;
}

.footer-left{
    font-size:.8rem;
    color:#666;
}

@media (max-width:700px){

    .foreground img{
        max-width:90vw;
    }

    .text{
        font-size:1.5rem;
    }

    .text2{
        font-size:1.5rem;
    }

    main{
        padding:20px;
    }

    .footer-content{
        justify-content:center;
    }

    .footer-left{
        display:none;
    }
}