.user-area {
    justify-content: space-between;
}

#big-title {
    color: white;
    font-size: clamp(0.5em, 4vw, 2em);
    margin-bottom: 0.5%;
}

h2 {
    color: white;
    font-size: 1.5em;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

h3 {
    color: white;
    font-size: 1.2em;
    margin-top: 0.5em;
}

p {
    color: white;
    font-size: 1em;
    margin-top: 0.5em;
}

a {
    color: #1e90ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#smallhr {
    border: 0.01em solid rgba(126, 126, 126, 0.5);
}

#codeblock {
    background-color: rgba(0, 0, 0, 0.647);
    color: white;
    padding: 1em;
    border-radius: 5px;
    font-family: monospace;
}

#small-codeblock {
    background-color: rgba(0, 0, 0, 0.647);
    color: white;
    padding: 0.5em;
    border-radius: 5px;
    font-family: monospace;
}

table {
    border-collapse: collapse;
    width: 100%;
    color: white;
    margin-top: 1em;
    margin-bottom: 1em;
    overflow-x: auto;
    display: block;
}

th,
td {
    border: 1px solid rgba(126, 126, 126, 0.5);
    padding: 0.5em;
    text-align: left;
}

th {
    background-color: rgba(126, 126, 126, 0.5);
}

ul {
    list-style-type: disc;
    background-color: rgba(0, 0, 0, 0.647);
    margin-top: 1em;
}

li {
    margin: 2em;
    padding-left: 0.5em;
    color: white;
}

.file {
    width: max-content;
    display: flex;
    background-color: rgba(25, 30, 43, 0.763);
    border: 0.05em solid rgb(43, 51, 70);
    padding: 0.5% 0.5% 0.5% 0%;
    margin: 0.5em;
    border-radius: 0.5em;
}

.file svg {
    width: 3em;
    margin-right: 0.5em;
    fill: #ffffff;
}

.file h4 {
    margin-right: 1em;
}

.file p {
    color: #626262;
    font-size: 0.6em;
}

.date {
    width: 100%;
    font-size: 0.8em;
    color: gray;
    text-align: right;
    padding: 0.5em;
}

.warning {
    color: rgb(253, 228, 0);
    font-weight: bold;
}

.note {
    color: rgb(255, 255, 255);
    background-color: rgba(19, 106, 255, 0.466);
    padding: 1%;
    border-radius: 0.5em;
    border: 0.05em solid rgb(19, 106, 255);
}

iframe {
    aspect-ratio: 16 / 9;
    width: 80%;
    align-self: center;
    margin-top: 5%;
}


.data {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: end;
}

.user {
    display: flex;
    flex-direction: column;
    margin: 0.5em;
}

.user-details {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5em;
    padding: 0.5em;
    background-color: rgb(26, 31, 44);
}

.user-details p {
    color: white;
    font-size: 1.2em;
    text-align: center;
    margin: 0;
}

#author-avatar {
    width: 3em;
    height: 3em;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-right: 0.5em;
}

.comment-section {
    width: 98%;
    background-color: rgb(26, 31, 44);
    padding: 0.5em;
    margin: 0.5em;
}

.comment-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.comment {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-areas:
        "comment-avatar comment-info"
        "comment-avatar comment-content";
    grid-template-columns: auto 1fr;
    grid-gap: 0.5em;
    background-color: rgb(36, 41, 54);
    margin: 0.5em 0;
}

.comment-avatar {
    width: 4em;
    height: 4em;
    object-fit: cover;
    grid-area: comment-avatar;
    align-self: center;
    justify-self: center;
    margin: 0.5em;
}

.user-comment-info {
    grid-area: comment-info;
    display: flex;
    justify-content: space-between;
    padding: 0.5em;
    border-bottom: 0.1em solid rgb(56, 61, 74);
}

.user-comment-info .comment-username {
    color: white;
    font-weight: bold;
}

.comment-date {
    font-size: 0.8em;
    color: rgb(118, 118, 118);
}

.comment-content {
    grid-area: comment-content;
    margin: 0.5em;
}

.comment p {
    margin: 0;
}

.comment-section h2 {
    margin: 0;
}

.comment-form {
    display: grid;
    flex-direction: column;
    grid-template-areas:
        "comment-content-input comment-submit-button";
    grid-template-columns: 1fr auto;
    grid-gap: 0.5em;
    margin: 0.5em 0 0 0;
    align-items: center;
    justify-content: start;
}

.comment-form textarea {
    resize: vertical;
    font-size: 1em;
    padding: 0.5em;
    border: 1px solid rgb(56, 61, 74);
    border-radius: 0.25em;
    background-color: rgb(36, 41, 54);
    color: white;
    grid-area: comment-content-input;
}

.comment-form button {
    padding: 0.5em 1em;
    border: 1px solid rgb(56, 61, 74);
    border-radius: 0.25em;
    font-size: 1em;
    background-color: rgb(28, 125, 223);
    color: white;
    border: none;
    cursor: pointer;
    grid-area: comment-submit-button;
}