#all-screen-frame {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: #f0f8ff;
}

#all-screen-frame > div {
    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-frame {
    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;
}

@keyframes verticalScroll {
    from { margin-left: -350%; }
    to { margin-left: 110%; }
}

#banner-frame > div {
    animation-name: verticalScroll;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}