body {
    display: flex;
    border: 0;
    background: #FFFFFF;
    color: #000000;
    width: 100%;
    font: 10pt Verdana,Arial,Helvetica,sans-serif;
    margin: 0;
    flex-direction: column;
    overflow: hidden;
}

header {
    position: fixed;
    width: 110%;
    height: 20px;
    background-color: #e6eff4;
    border-bottom: solid 2px #385283;
    text-justify: center;
    overflow:hidden
}

@keyframes slide0to100 {
    from { margin-left: -20%; }
    to { margin-left: 90%; }
}

header>p {
    margin: 0;
    display: inline;
    animation-name: slide0to100;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.main-container {
    margin-top: 20px;
    height: calc(100vh - 20px);
    overflow-y: scroll;
}

.main-container>div {
    display: flex;

}

.side-bubble {
    width: 100%;
    border: solid 2px #7ebd99;
    background-color: #e6e6e6;
    display: block;
}

.middle-pane {
    align-self: center;
    width: 70%;
}

.side-pane p {
    margin: 0;
}

.left {
    width: 10%;
    left: 0;
}

.right {
    margin-top: 30px;
    width: 20%;
    right: 0;
    margin-right: 1.5%;
}

.right .section-head {
    padding: 5px;
    color: white;
    font-size: 15pt;
    background-color: #6ea21e;
    width: fill;
    text-shadow: 2px 2px 0 #537a17;
    font-weight: bold;
    display: flex;
}

.right .section-head p {
    align-self: center;
}

.right .section-body {
    padding: 10px;
    padding-bottom: 3px;
    display: flex;
}

.section-head>img {
    margin-left: auto;
    width: 32px;
    height: 32px;
}

#server-status-reload:hover {
    filter: invert(1);
    -webkit-filter: invert(1);
}

#server-status-reload.reloading {
    border-radius: 3px;
    box-shadow: inset 0 0 0 1000px rgba(9, 81, 216, 0.863);
}

#minecraft-logo {
    height: 100px;
    margin-right: 10px;
}

#server-status {
    width: 100%;
    margin: 5px;
    vertical-align: middle;
    text-align: center;
}

#server-status caption {
    display: block;
    width: 200%;
    align-content: center;
}

#server-status span {
    width: 60%;
    border: solid 3px;
    border-radius: 50px;
    display: flex;
    margin-left: 16%;
    padding: 5px;
    justify-content: center;
    font-weight: bold;
    color: white;
    background-color: darkgray;
    border-color: rgb(63, 63, 63);
}

#server-status.on span {
    background-color: #3ba55c;
    border-color: #537a17;
    text-shadow: 2px 2px 0 #537a17;
}

#server-status.off span {
    background-color: #e74c3c;
    border-color: #9b1b1b;
    text-shadow: 2px 2px 0 #5f0502;
}

#server-status img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

#server-status:not(.off) img#off {
    display: none;
}

#server-status:not(.on) img#on {
    display: none;
}

#server-status .stats {
    margin-top: 5%;
    margin-bottom: 5%;
}

#server-adress {
    background-color: #ecc667;
    padding-top: 3%;
    padding-bottom: 3%;
    border: 3px solid black;
    border-radius: 30px;
}

#server-adress:hover {
    border-color : #1e90ff;
    color: #1e90ff;
}

#server-adress>p {
    position: absolute;
    display: none;
}

@font-face {
    font-family: bios;
    src: url('/medias/fonts/Perfect_DOS_VGA_437.ttf');
}

.bios {
    font-family: bios, monospace;
    font-size: medium;
    /*  background-color: #00008b;  */
    color: #fff;
    margin: 0;
    padding: 0;
    display: auto;
    justify-content: center;
    align-items: center ;
    height: auto;
}

.bios .container {
    width: auto;
    background-color: #9c9a9d;
    color: #000;
    border: 2px solid #000;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    margin: 31px;
}

.bios .header {
    background-color: #00008b;
    color: #fff;
    padding: 10px;
    font-size: 1.2em;
    text-align: center;
}

.bios .menu {
    background-color: #00008b;
    color: #b9b9b9;
    padding: 5px;
    display: flex;
    justify-content: space-around;
    font-size: 1.1em;
}

.menu span {
    width: 100%;
    text-align: center;
}

.menu span.selected {
    background-color: #9c9a9d;
    color: #00008b;
}

.content {
    display: flex;
    margin-top: 10px;
}

.left-section {
    flex: 3;
    padding: 10px;
    background-color: #f0f0f0;
    border-right: 2px solid #000;
}

.right-section {
    flex: 2;
    padding: 10px;
    background-color: #e6e6e6;
}

.footer {
    background-color: #00008b;
    color: #fff;
    text-align: center;
    padding: 5px;
    margin-top: 10px;
    font-size: 0.9em;
}

.instructions {
    font-size: 0.9em;
    margin-top: 10px;
    color: #000;
}