:root {
    --brightest-color: #a4a0cc;
    --bright-color: #5d5885;
    --primary: #a38dc8;
    --dark-color: #4a466d;
    --darkest-color: #403c5e;
    --darkestest-color: #373451;
    --font-color: #0d0b13;
}

body{
    background: var(--dark-color);
    color: var(--font-color);
    font: 11pt "MS PGothic", Tahoma, Verdana;
    margin: 0;
    background-image: url("background.webp");
}

a:link {
    color: var(--darkestest-color);
    text-decoration: none;
}

a:visited {
    color: var(--darkestest-color);
    text-decoration: none;
}

a:hover {
    color: var(--brightest-color);
    text-decoration: none;
}

a:active {
    color: var(--darkestest-color);
    text-decoration: none;
}

a:link.sidebar-link {
    color: var(--brightest-color);
    text-decoration: none;
}

a:visited.sidebar-link {
    color: var(--brightest-color);
    text-decoration: none;
}

a:hover.sidebar-link {
    color: var(--darkestest-color);
    text-decoration: none;
}

a:active.sidebar-link {
    color: var(--brightest-color);
    text-decoration: none;
}

.image-left {
    float: left;
    margin-right: 15px;
}

ul{
    list-style-image: url("../images/bulletpoint.gif");
    font-weight: 600;
    text-align: left;
    vertical-align: top;
}

.title{
    background: var(--darkest-color);
    margin: 5px;
    padding: 5px;
    text-align: center;
    font-family: "Jersey 20", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--brightest-color);
    font-size: 16px;
}

.menu-button{
    background: var(--bright-color);
    width: 100%;
    padding: 5px 0px 5px 0px;
    font-family: "Jersey 20", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.menu-button:hover{
    background: var(--dark-color);
    width: 100%;
    padding: 5px 0px 5px 0px;
}

#site-center{
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

#container{
    display: flex;
    flex-direction: column;
    background: var(--bright-color);
    padding: 10px;
    min-width: 70%;
    max-width: 70%;
}

#header{
    display: flex;
    background: var(--dark-color);
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: space-between;
}

#site-title {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: var(--brightest-color);
    padding-left: 20px;
    margin: 0px;
}

#header-right{
    font-family: "Tiny5", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    padding-right: 20px;
    text-align: right;
    color: var(--brightest-color);
}

#content-container{
    display: flex;
    flex-direction: row;
    height: 100%;
}

#left-sidebar, #right-sidebar {
    flex: 0 0 18%;          /* fixed 200px columns */
    background: var(--dark-color);
    padding: 5px;
    margin: 10px 1px 10px 0px;
    height: auto;
    color: var(--brightest-color);
}

#content {
    flex: 1;
    margin: 10px 10px 10px 10px;
    padding: 5px;
    text-align: center;
    background: var(--dark-color);
}

.avatar{
    background-image: url("avatar.jpg");
    background-size: 100px 100px;
    height: 100px;
    width: 100px;
    border: 10px solid var(--brightest-color);
    margin: 5px;
    padding: 5px;

}

.content-box{
    background-color: var(--bright-color);
    margin: 5px;
    padding: 10px 5px 10px 5px;
}

.sidebar-content{
    padding: 5px;
    text-align: center;
}

.split-container{
    display: flex;
    flex-direction: row;
}

.split-content{
    width: 50%;
}

.badges{
    width: auto;
    height: auto;
}

#footer{
    display: flex;
    background: var(--dark-color);
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: var(--brightest-color);
}

.rotate {
  animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.scroll-left {
 overflow: hidden;
 position: relative;
 height: 25px;
}
.scroll-left p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 25px;
 text-align: center;
 /* Starting position */
 transform:translateX(100%);
 /* Apply animation to this element */
 animation: scroll-left 15s linear infinite;
}
/* Move it (define the animation) */
@keyframes scroll-left {
 0%   {
 transform: translateX(100%); 		
 }
 100% {
 transform: translateX(-100%); 
 }
}