/*Basics*/
body {
    color: white;
    font-family: Verdana;
    padding: 0;
    margin:0;
    background-image: url(../assets/backgrounds/background_night_mc2.png);
    background-position-x: center;
    background-attachment: fixed;
    background-color: #111;
}

#container{
    max-width: 1000px;
    margin: 10px auto;
    background-color: white;
    padding: 10px 0 5px 5px;
    border-radius: 10px;
}

#footer{
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 800px;
    text-align: center;
    font-size: 10px;
}

#header{
    background-color: #080417;
    margin: 0 5px 5px 0;
    font-size: 30px;
    text-align: center;
    padding:5px;
    width: 100%;
}

#pagemini{
    height:auto;
    width:200px;
    position: fixed;
    right:80px;
    bottom:10px;
    image-rendering: pixelated;
}

/*Main and Flex*/

.sidebar{
    background-color: #150f29;
    margin: 0 5px 5px 0;
    padding:5px;
    width: 320px;
    text-align:center;
}

.section{
    display:flex;
    justify-content: center;
    width: 100%
}

.center{
    background-color: #150f29;
    margin: 0 5px 5px 0;
    padding:5px;
    width: 100%;
}

.buttons{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.buttons a{
    margin:2px;
}

.buttons img{
    image-rendering: pixelated;
}

#updates{
    overflow:scroll;
    word-wrap:break-word;
    max-height: 250px;
}

#updates ul{
    font-size: smaller; padding:2px;
}

/* Links and Nav */

#nav ul{
    list-style-type: none;
    padding-left: 0;
    overflow: hidden;
    text-align: left;
}

#offsitelinks ul{
    list-style-type: none;
    padding-left: 0;
    overflow: hidden;
    text-align: center;
}

a{
    color: #e09871;
    text-decoration: underline;
}

a:visited{
    color:#c16f55;
}

a:hover{
    color:white;
    text-decoration: none;
}



