body{
    background: url('/img/zwei_punkte.jpeg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    margin: 15px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 100;
    color: blue;
    
}


header{
    font-family: 'Courier New', Courier, monospace;
    font-weight: 100;
    font-size:2.5vh;
    color: blue;
    padding: 5px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
 
}

.left-side {
    display: flex;
    gap: 4px;
    justify-self: start;

}

.center-side{
    justify-self: center;
    justify-content: center;

}

.right-side {
    display: flex;
    align-items: center;
    justify-self: end;
   
}

.aktuell{
    font-size: 6vh;
    text-align: center;
    line-height: 0.2vh;
    
}
.symbol {
    margin-top: 45vh;
}

.font_small{
    font-size: 1.3vh;
    
}
.footer{
    all:unset;
    position: fixed;
    text-align: end;
    right: 15px;
    bottom:15px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 100;
    font-size:2.5vh;
    color: blue;
    padding: 5px;
}

.footer-toggle{
    cursor: pointer;

}


.footer-content h1, .footer-content h2, .footer-content h3{
        font-size: 1vh;
        font-style: normal;
}
.footer-content{
    font-size: 1vh;
    text-align: left;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.footer.active .footer-content{
    max-height: 60vh;
    margin-top: 10px;
}

.scrollen{
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

@media (max-width: 768px) and (orientation: portrait) {
    body{
        background: url('/img/zwei_punkte_media.jpeg') no-repeat center center;
        background-size: contain;
        background-position: top center;
    }
}