body {
    background: #ffee8d;
    font-family: "VT323", monospace;
}

#layout {
    width: 85%;
    border: 5px solid #fff;
    margin: auto;
    margin-top: 5%;
}

#top {
    background: #62E7EB;
    border-bottom: 3px solid #fff;
    padding: 10px;
    color: #4B3F92;
    font-size: 30px;
    display: flex;
}

#top img {
    max-height: 50px;
    margin-left: auto;
}

#bottom {
    display: flex;
}

#left {
    width: 20%;
    padding: 10px;
    background: #62E7EB;
    border-right: 3px solid #fff;
}

#left ul, #right ul {
    margin: auto;
    padding: 0px;
}

#left li, #right li {
    list-style-type: none;
    display: block;
    padding: 5px;
    margin-top: 5px;
    background: #ffee8d;
    text-align: center;
}

#left a, #right a, #left a:visited, #right a:visited {
    color: #4B3F92;
}

#middle {
    width: 60%;
}

#content {
    background: #EB63BE;
    padding: 10px;
    height: 500px;
    overflow: auto;
}

h1, h2, h3 {
    color: #4B3F92;
}

hr {
    border-top: 5px solid #4B3F92;
    width: 50%;
}

#content img {
    max-width: 100%;
}

#content a, a:visited {
    color: #ffee8d;
}

#content a:hover {
    color: #4B3F92;
}

#contentbottom {
    display: flex;
}

#status {
    width: 70%;
    margin-right: 15px;
}

#statuscafe-content {
    background: #fff;
    border-radius: 5px;
    padding: 3px;
    margin-top: 5px;
}

#tail {
    color: #fff;
    margin-top: -15px;
    margin-left: 100px;
    font-size: 30px;
}

#updates {
    width: 30%;
}

#updates h3 {
    margin: 0px 0px 10px 0px;
}

#updatebox {
    height: 250px;
    overflow: auto;
    background: #ffee8d9f;
    padding: 5px;
    border-radius: 5px;
}

#c_widget {
    margin-top: 10px;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #62E7EB;
}

::-webkit-scrollbar-track {
    background: #ffee8d;
}

#buttons {
    background: #62E7EB;
    border-top: 3px solid #fff;
    padding: 5px;
}

#right {
    width: 20%;
    background: #62E7EB url("img/fursona.png") no-repeat bottom;
    background-size: contain;
    border-left: 3px solid #fff;
    padding: 10px;
}

@media (max-width: 800px) {
    #top {
        display: none;
    }

    #bottom {
        flex-wrap: wrap;
    }

    #buttons {
        display: none;
    }

    #left {
        width: 100%;
        border-right: 0px;
        border-bottom: 3px solid #fff;
    }

    #middle {
        width: 100%;
    }

    #right {
        width: 100%;
        border-left: 0px;
        border-top: 3px solid #fff;
        background: #62E7EB;
    }

    #left ul, #right ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    #left li, #right li {
        margin-right: 20px;
    }
}