html {
    background-image: URL(checkerboarddark.png);
}

.mainText {
    max-width: 700px;
    height: 25.5px;
    padding: 7px;
    border: 10px solid white;
    border-radius: 20px;
    font-family: Monospace;
    font-weight: 900;
    font-size: 20px;
    color: white;
    border-style: outset;
    background-image: url('checkerboardlight.png');
}

superFixedText {
    position: fixed;
    font-family: monospace;
    font-weight: 250;
}

#tickerTextId {
    display: inline-block;
    transform: translateX(100%);
    padding-left: 100%;
    animation: scroll 5s linear infinite;
    color: white;
    font-size: 40px;
    font-family: Monospace;
}

.content {
    border-style: ridge;
    font-family: Monospace;
    font-weight: 500;
    color: white;
    font-size: 15px;
    min-height: 10px;
    max-width: 500px;
    background-image: url('checkerboardlight.png');
    margin-left: 220px;
    border: 5px solid white;
}

p {
    font-family: Monospace;
    font-weight: 500;
    color: white;
    font-size: 15px;
    border-color: aqua;
}

.leftBar {
    border-style: ridge;
    font-family: Monospace;
    font-weight: 500;
    color: white;
    font-size: 15px;
    min-height: 10px;
    width: 200px;
    background-image: url('checkerboardlight.png');
    float: left;
}

.sidebarContent {
    margin-bottom: 10px;
    padding: 10px;
    border-style: ridge;
    font-family: Monospace;
    font-weight: 500;
    color: white;
    font-size: 15px;
    min-height: 10px;
    box-sizing: border-box;
    float: left;
    clear: left;
    width: 206px;
    background-image: url('checkerboardlight.png');
}

.scrollText {
    width: 100%;
    overflow: hidden;
    background: transparent;
    border: none;
    white-space: nowrap;
    line-height: 1;
}

.tickerText {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100vw);
    }
}

.centerWrapper {
    width: 900px;
    margin: auto;
}

a {
    font-size: 10px;
    font-weight: 50px;
    color: white;
}