.all-screen-frame {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #f0f8ff;
}

.error-message {
    position: absolute;
    top: 35%;
    left: calc(50% - 225px);
    padding: 7px;
    border-radius: 10px;
    background-color: #ffffff;
    font-family: Calibri, serif;
    text-align: center;
    max-width: 450px;
}

.banner {
    position: absolute;
    z-index: 10000;
    left: 0;
    right: 0;
    bottom: 0;
    height: 85px;
    background-color: rgba(255, 0, 0, 0.95);
    text-align: center;
    line-height: 85px;
    font-family: Calibri, serif;
    font-size: 50px;
    color: white;
}

.banner > div {
    display: inline-block;
    white-space: nowrap;
    animation: floatText 15s infinite linear;
    padding-left: 100%;
}

@keyframes floatText {
    to {
        transform: translateX(-100%);
    }
}
