#holder {
    margin: 1rem;
    display: flex;
}

#holder2 {
    margin: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#pfp {
    width: 100px;
    height: 100px;
}

.username {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.desc {
    max-height: 50px;
    overflow-y: hidden;
    word-wrap: break-word;
    white-space: normal;
    word-break: break-word;
    display: none;
}

.username-holder {
    max-width: calc(100% - 150px);
}

.buttons-holder {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.buttons-holder>* {
    margin: 0.25rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}


@media only screen and (max-width: 600px) {
    .username-holder {
        max-width: calc(100% - 100px);
    }

    #holder {
        flex-direction: column;
    }

    #holder2 {
        flex-direction: column-reverse;
        margin: 0;
    }

    .sidebar {
        flex-direction: row;
    }

    .buttons-holder {
        flex-direction: row;
        justify-content: space-evenly;
        margin-top: 1rem;
    }
    .buttons-holder>* {
        margin: 5px 0 0 0;
    }

    #holder {
        margin: 0.25rem;
    }

    #pfp {
        width: 75px;
        height: 75px;
    }
}

.window-body pre {
    margin: 0 !important;
    padding: 0
}

@media only screen and (max-width: 300px) {
    .buttons-holder>* {
        margin: 0;
        margin-top: 5px;
        flex-grow: 1;
        min-width: 0 !important;
        min-height: 0 !important;
        padding: 2px !important;
    }

    #holder>div.flex.w-full {
        flex-direction: column;
        align-items: center;
    }

    #pfp {
        margin: 0;
    }

    #holder {
        margin: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .username-holder {
        max-width: 100%;
        margin: 10px;
    }

    body>div>div.window-body.has-space {
        padding: 0;
    }
}

.desc>ul {
    list-style: outside !important;
    padding: 0 0 0 15px !important;
}

.desc>ol {
    list-style: decimal !important;
    padding: 0 0 0 15px !important;
}

h1 {
    font-size: xx-large !important;
}

h2 {
    font-size: x-large !important;
}

h3 {
    font-size: large !important;
}

h4 {
    font-size: medium !important;
}

h5 {
    font-size: larger !important;
}

h6 {
    font-size: small !important;
}