html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    height: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

html, body {
    height: 100%; /* Stellt sicher, dass html und body die volle Fensterhöhe einnehmen */
    margin: 0; /* Entfernt Standardabstände */
    padding: 0; /* Entfernt Standardabstände */
    overflow: hidden; /* Verhindert Scrollbars */
}

main {
    height: 100%; /* Deckt die volle Höhe des body ab */
    width: 100%; /* Deckt die volle Breite ab */
    display: flex; /* Optional, falls du Inhalte ausrichten möchtest */
    justify-content: center; /* Horizontale Zentrierung (optional) */
    align-items: center; /* Vertikale Zentrierung (optional) */
}

.DisplayNone {
    display: none;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

a {
    text-decoration: none;
    color: var(--colorC);
}

