body {
    color: black;
    font-family: Arial;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items:center;
}

#login{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#loginBox{
    background:white;
    padding:30px;
    border-radius:15px;
    text-align:center;
    min-width:300px;
    color: black;
}

.zuruck{
    position:absolute;
    margin-top: -30px;
    margin-right: -10px;
    background:none;
    border:none;
    color:#94a3b8;
    font-size:22px;
    cursor:pointer;
    transition:0.2s;
    display: flex;
    justify-self: right;
}

.zuruck:hover{
    color:#ef4444;
    transform:scale(1.2);
}

.termin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

a {
    color: black;
}

a:hover {
    color: rgb(94, 94, 94);
}

table {
    width: 80%;
    border-collapse: separate;
    border-spacing: 20px;
}

footer {
    margin-bottom: 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

h2 {
    margin-top: 2rem;
}

img {
    height: 1rem;
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.te {
    margin-left: 10px;
}

@media (max-width: 1000px) {
	h1 {
        font-size: 100px;
    }

    h2 {
        font-size: 80px;
    }

    i{
        font-size: 40px;
        margin-bottom: 3rem;
    }

    table {
        width: 90%;
        font-size: 30px;
    }
}