body {
    font-family: "MS UI Gothic", sans-serif;
    font-weight: auto;
    font-style: normal;
    font-size: medium;
    background: linear-gradient(0, rgba(179, 179, 179, 1) 5%, rgba(237, 237, 237, 1) 82%);
    color: rgb(4, 4, 4);

}

.black {
    background-color: rgb(4,4,4);
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    opacity: 1;
    animation-name: fadeInAndOut;
    animation-Duration: 4s;
    animation-fill-mode: forwards;
    pointer-events: all;
}

.crtborder {
    margin-top: -300px;
    margin-left: -400px;
    float: none;
    border-image: url(images/CRTBorder.png);
    border-image-slice: 50;
    border-width: 50px;
    box-sizing: border-box;
    border-style: solid;
    background-image: url(images/LoadAnimShortAlt.gif);
    background-repeat: no-repeat;
    background-position: center;
    width: 800px;
    height: 600px;
    left: 50%;
    top: 50%;
    position: fixed;
}

@keyframes fadeInAndOut {
    70% {
        opacity: 1;
    }

    99% {
        pointer-events: all;
    }

    100% {
        opacity: 0;
        pointer-events: none;
    }
}

.icon{
    padding-top: 3px;
    padding-right: 4px;
    float:inline-start;
}

.texticon{
    padding-top: 3px;
    padding-right: 4px;
    float:inline-end;
}

header img {
    display: block;
}

b.shape {
    color: whitesmoke;
    background: rgb(4, 4, 4);
    border-radius: 5px;
    border-width: 2px;
    padding-left: 1px;
    border-color: rgb(4, 4, 4);
    border-style: solid;
}

a{
    color: #2d8abb;
}

h3 {
    color: whitesmoke;
    background-color: rgb(4, 4, 4);
    border-radius: 5px;
    margin-left: -2px;
    margin-right: -2px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 3px;
    padding-right: 3px;
}

h4 {
    color: whitesmoke;
    background-color: rgb(4, 4, 4);
    border-radius: 5px;
    margin-left: -2px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 3px;
    padding-right: 3px;
}

a.navbutton {
    text-align: center;
    display: block;
    text-decoration: none;
    color: rgb(4, 4, 4);
}

a.navbutton:hover {
    text-decoration: none;
    color: rgb(50, 50, 50);
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.35);
}

.container {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    border: 1px;
    border-style: solid;
    background-color: whitesmoke;
    display: block;
    overflow: auto;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}

.gridbox {
    display: grid;
    grid-template-columns: auto auto auto;
}

.verticalgridbox {
    display: grid;

}

.box {
    border: 1px;
    border-style: solid;
    padding: 5px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
}

.mainbox {
    border: 1px;
    border-style: solid;
    padding: 5px;
    border-bottom-width: 0px;
    border-right-width: 0px;
    min-height: 555px;
}

.siteupdates {
    border: 1px;
    border-style: solid;
    padding: 20px;
    border-bottom-width: 0px;
    border-right-width: 0px;
}


.sidebox {
    border-width: 0px;
    border-left-width: 1px;
    border-top-width: 1px;
    border-style: solid;
    padding: 5px;
    max-width: 200px;
}

.sidebox img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    border-radius: 3px;
}

.list {
    overflow-y: scroll;
    scrollbar-width: none;
    max-height: 150px;
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    border-color: rgb(4, 4, 4);

}

.list h4 {
    background-color: rgb(75, 75, 75);
    color: whitesmoke;
    border-radius: 5px;
    margin-left: -2px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 3px;
    padding-right: 3px;
}

.list h5 {
    background-color: rgb(75, 75, 75);
    color: whitesmoke;
    border-radius: 5px;
    margin-left: -2px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 3px;
    padding-right: 3px;
}

.sidebar {
    border-width: 0px;
    border-top-width: 1px;
    float: inline-start;
    text-align: center;
    border-style: solid;
    padding: 5px;
}

.scroller {
    height: 30px;
    overflow: hidden;
    position: relative;
    background: rgb(4, 4, 4);
    color: whitesmoke;
    border-width: 1px;
    border-radius: 3px;
    border-color: whitesmoke;
    outline-width: 1px;
    outline-style: solid;
    outline-color: rgb(4, 4, 4);
    border-style: solid;
    margin: 10px;
}

.scroller p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 30px;
    text-align: center;
    /* Starting position */
    transform: translateX(100%);
    /* Apply animation to this element */
    animation: scroller 10s linear infinite;
}

/* Move it (define the animation) */
@keyframes scroller {
    0% {
        transform: translateX(90%);
    }

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