@font-face {
    font-family: Whitney;
    src: url("whitney-400.woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Whitney;
    src: url("whitney-500.woff");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

* {
    box-sizing: border-box;
    border: 0;
    margin: 0;
    text-rendering: optimizelegibility;
    font-family: Whitney, serif;
}

a {
    color: #23a4f4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

body {
    background-color: #36393f;
    width: 100%;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
    background-color: #24262a;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid grey;
}

#page_title {
    font-size: 18px;
    font-weight: 500;
    color: #dcddde;
    margin-right: 1px;
}

#secondary_title {
    font-size: 16px;
    font-weight: 400;
    color: #727377;
    margin-right: 3px;
}

#version {
    font-size: 13px;
    font-weight: 300;
    color: #727377;
}

#small_print {
    font-size: 14px;
    font-weight: 300;
    color: #727377;
}

#announcement {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #f5a623;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align:center;
}

#banner {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #2d3035;
    min-height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
}

#banner .item {
    text-align: center;
}

#footer {
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #727377;
    background-color: #2d3035;
}

.inline {
    display: inline-block;
}

.guild_img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 10px;
}

.container {
    margin-left: 30px;
}

.separator {
    border-top: 1px;
    border-style: solid;
    border-color: #4a4d52;
    margin: 15px 25px;
}

.msg_author {
    font-size: 16.5px;
    font-weight: 500;
    margin-right: 3px;
}

.msg_timestamp {
    color: #727377;
}

.message_timestamp {
    color: #727377;
}

.msg_content {
    font-size: 16.5px;
    font-weight: 400;
    color: #dcddde;
    max-width: 100%;
    line-height: 130%;
    padding-top: 2px;
    letter-spacing: 0.25px;
}

#title {
    font-size: 35px;
    font-weight: 500;
    color: #dcddde;
}

#desc {
    font-size: 16px;
    font-weight: 500;
    color: #dcddde;
    line-height: 1.6em;
}

#content {
    display: flex;

}

#left {
    padding-top: 20px;
    padding-bottom: 10px;
    padding-right: 10px;
    background-color: #2d3035;
}

#right {
    padding-top: 40px;
    padding-bottom: 20px;
    padding-right: 20px;
    flex-grow: 1;
}

.msg {
    display: flex;
    justify-content: flex-start;
}

.author_avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
}

.attachment-image {
    margin-top: 3px;
    max-width: 75vw;
    max-height: 350px;
}

.bottom {
    position: fixed;
    bottom: 10px;
    right: 5px;
}

.custom_emoji {
    max-height: 20px;
}

.mention {
    padding: 1px 2px;
    border-radius: 4px;
    background-color: #414675;
    cursor: pointer;
}

.mention:hover {
    background-color: #5865f2;
    text-decoration: underline;
}

.mention:hover+.tag_info {
    display: block;
}

.tag_info {
    position: absolute;
    display: none;
    border: 2px solid black;
    padding-right: 1px;
}

/* Twitter Emoji */
img.emoji {
    width: 1.2em;
    pointer-events: none;
}

table, tr, td {
    border: none;
}

@media only screen and (max-width: 900px) {
    #header {
        flex-direction: column;
    }
    #content {
        border-top: 1px solid darkslategrey;
        flex-direction: column;
    }
}

@media only screen and (min-width: 900px) {
    #left {
        width: 340px;
    }
}
