body {
    background: black;
    background-image:url('Assets/trees.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    font-family: "MS UI Gothic", sans-serif;
    font-size: 15px;
    line-height: 1.2em;
}


::-webkit-scrollbar {
    width: 5px;
}


::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb {
    background: #4e2e99; 
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff; 
}

a {
    text-decoration: none;
    color: #ab8dff;
}

a:hover {
    color: white;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
}

.container {
    margin: 0 auto;
    border-radius: 7px;
    width: 800px;
    height: 680px;
    background: black;
    background-image: url('Assets/bg.gif');
    border: 1px #4e2e99  solid;
    padding: 20px;
    overflow: auto;
}

.flex {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.header {
    border-radius: 7px;
    background: #000000;
    background-image: url('Assets/header3.png');
    background-repeat: no-repeat;
    text-align: center;
    height: 130px;
    margin-bottom: 20px;
    padding: 7px 25px;
    text-align: center;
    border: 1px #4e2e99  solid;
}

.left {
    width: 200px;
    overflow: auto;
}

.main {
    width: 400px;
    overflow: auto;
}

.right {
    width: 200px;
    overflow: auto;
}

.section-header {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    margin: auto;
    margin-bottom: -1px;
    background: linear-gradient(to bottom, #4e2e99 0%, #000000 100%);
    padding: 10px;
    border: 1px #4e2e99 solid;
}

.section-header img {
    height: 15px;
}


.section-content {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    background: black;
    color: white;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px #4e2e99 solid;
    overflow: auto;
}

.navbar {
    text-align: center;
    height: 394px;
    overflow: auto;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar li a {
    display: block;
    padding: 9px;
    margin: 10px;
    font-size: 17px;
    border-radius: 7px;
    background: linear-gradient(to bottom, #000000 0%, #4e2e99  100%);
    text-decoration: none;
    border: 1px solid #4e2e99;
}

.navbar li a:hover {
    background: linear-gradient(to bottom, #4e2e99 0%, #000000  100%);
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    
}

/* Change the link and background color on hover */
.navbar li a:hover {
    background-color: #555555;
    color: white;
}

ul {
    list-style-type: square;
    list-style-position: inside;
    margin: 0;
    padding-left:  0px;
}

.blinkies img {
    width: 150px;
    height: 20px;
}

.stamps img {
    width: 100px;
    height: 56px;
}

#statuscafe {
    height: 154px;
    overflow: auto;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

.footer {
    border-radius: 7px;
    background: black;
    padding: 7px 15px;
    text-align: center;
    border: 1px #4e2e99 solid;
    height: 20px;
}

.musicbox {
    line-height: 1.2em;
    height: 158px;
    overflow: auto;
}

@media only screen and (max-width: 600px) {

.container {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.flex {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.navbar {
    max-height: 394px;
}


.header {
    max-height: 100px;
    margin-bottom: 10px;
}

.left {
    max-width: 200px;
}

.main {
    max-width: 400px;
}

.right {
    max-width: 200px;
}

.section-header {
    padding: 5px;
}


.section-content {
    margin-bottom: 10px;
    padding: 5px;

}

.navbar {
    max-height: 394px;
}

.navbar li a {
    margin: 5px;
}

#statuscafe {
    max-height: 154px;
}

.footer {
    width: 100%;
}

.musicbox {
    max-height: 158px;
}
}