html {
    background: url("/static/images/dashboard_bg.png") repeat;
    background-size: 104%;
    font-family: "Tinos", serif;
}

body {
    margin: 0;
}

button {
    color: beige;
}

#dashboard {
    /* border: black solid 4px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard_part {
    width: 32.5%;
    height: 800px;
}

/* MIDDLE PART */
#dashboard_middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#heading, #name, #status {
    text-align: center;
}

#heading {
    font-style: italic;
    font-weight: 600;
    font-size: 400%;
    color: #5fa874;
    text-shadow: 0.5px 0.5px 5px;
}

#name {
    font-size: 300%;
    text-shadow: #2ec8d9 0.5px 0.5px 2px;
    color: #2ec8d9;
}

#status {
    text-shadow: 0.5px 0.5px 10px;
    color: #9fff22;
}

#ip {
    font-style: oblique;
    font-size: 100%;
    text-shadow: 0.5px 0.5px 2px;
    color: rgb(199, 98, 26);
    background-color: rgba(109, 47, 2, 0.246);
    border: rgb(63, 63, 63) solid 4px;

    width: 100%;

    text-align: center;
}

#controll_buttons {
    width: 100%;
    padding: 20px 0px;

    display: flex;
    justify-content:space-evenly;
}

#controll_buttons button {
    font-size: 150%;
    border: none;

    height: 150%;
    width: 110%;
    gap: 5%;

    display: flex;
    align-items: center;
}

#playerlist {
    width: 100%;
}

#playerlist hr {
    border-color: #2e035a;
}

#playerlist h2 {
    font-size: 250%;
    color: #2ec8d9
}

#playerlist h3 {
    font-size: 120%;
    text-shadow: 0.5px 0.5px 2px;
    color: rgb(244, 244, 27);
    background-color: rgba(117, 179, 24, 0.487);;
}

/* LEFT PART */

#chat_box {
    background-color: rgba(80, 40, 4, 0.3);
    border: rgb(87, 44, 7) solid 4px;

    width: 90%;
    height: 90%;
    margin: 5%;
}

#chat_box pre {
    font-size: 140%;
    font-weight: 600;
    text-shadow: 0.2px 0.2px 2px;
    color: #608b17;

    margin: 2%;
}

#dashboard_left form {
    height: 100%;
    margin: 5%;

    display: flex;
}

#dashboard_left form input {
    font-size: 120%;
    font-weight: 600;
    text-shadow: 0.2px 0.2px 2px;
    color: #608b17;
    background-color: rgba(80, 40, 4, 0.295);
    border: rgb(87, 44, 7) solid 4px;
    
    width: 80%;
    height: 4%;
}

#dashboard_left form button {
    font-size: 150%;
    background-color: #608b17;
    border: none;
    
    width: 20%;
    height: 5.2%;
    margin-left: 1%;

    text-align: center;
}

/* RIGHT PART */

#dashboard_right div {
    text-shadow: 0.2px 0.2px 2px;
    color: #608b17;
    border: rgb(87, 44, 7) solid 3px;
    background-color: rgba(80, 40, 4, 0.3);

    width: 95%;
}

#info_box { 
    height: 30%;
    margin-top: 10%;
    
    text-align: center;
}

#info_box h3 {
    font-size: 250%;
}

#info_box h3 {
    text-align: left;
    margin-left: 4%;
}

#info_box button {
    font-size: 150%;
    background-color: #538313;
    border: none;

    width: 40%;
    height: 30%;
}

#info_box #modpack_download {
    margin-right: 10%;
}

#dashboard_right img {
    width: 100%;
    display: block;
}

#stats_link {
    margin-top: 8.5%;
    margin-bottom: 8.5%;
}

