body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    overflow: hidden; /* Verhindert Scrollen */
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#bruch-display {
    font-size: 10rem; /* Große Anzeige für den Beamer */
    margin-bottom: 1px;
}

#loesung-display {
    padding: 4px;
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 0.8rem; /* Sehr klein */
    color: #ccc;      /* Kontrastarm */
    background-color: #999999;
    user-select: none; /* Verhindert versehentliches Markieren */
}