@font-face{font-family:Whitney;src:local("Whitney"),url("fonts/whitney-300.woff2"),url("fonts/whitney-300.woff");font-style:normal;font-weight:300;font-display:swap;}
@font-face{font-family:Whitney;src:local("Whitney"),url("fonts/whitney-400.woff2"),url("fonts/whitney-400.woff");font-style:normal;font-weight:400;font-display:swap;}
@font-face{font-family:Whitney;src:local("Whitney"),url("fonts/whitney-500.woff2"),url("fonts/whitney-500.woff");font-style:normal;font-weight:500;font-display:swap;}
@font-face{font-family:Whitney;src:local("Whitney"),url("fonts/whitney-600.woff2"),url("fonts/whitney-600.woff");font-style:normal;font-weight:600;font-display:swap;}
@font-face{font-family:Whitney;src:local("Whitney"),url("fonts/whitney-700.woff2"),url("fonts/whitney-700.woff");font-style:normal;font-weight:700;font-display:swap;}

html {background-color: #36393f; font-family: Whitney, "Helvetica Neue", Helvetica, Arial, sans-serif; color: #fefefe}
body {max-width: 800px; text-align: center; margin: auto;}

.navbar {
    margin: auto;
    display: flex;
    background-color: #172025;
    border-radius: 15px;
    padding: 10px;
    max-height: 100%;
    margin-top: 10px;
}
.navbar img {
    width: 45px;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
}
.navbar .buttons {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
}
.navbar .buttons button {
    margin-left: 5px;
}
button {
    padding: 8px 16px 8px 16px;
    border: none;
    border-radius: 4px;
    font-family: Whitney, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9em;
    cursor: pointer;
    background-color: #5865F2;
    color: white;
    transition-property: background-color, color;
    transition-duration: 200ms;
}

button:hover {
    background-color: #4752c4;
    transition-property: background-color, color;
    transition-duration: 200ms;
}

button[disabled] {
    background-color: #515496;
    color: #bfbfbf;
    cursor: not-allowed;
    transition-property: background-color, color;
    transition-duration: 200ms;
}

.content {
    margin-top: 25px;
}

h1 {
    font-weight: bold;
    font-size: 44px;
    margin-top: 5px;
    margin-bottom:5px
}

h2 {
    margin: 0;
}

h3 {
    margin: 0;
    margin-top: 10px;
}

.feature {
    background-color: #0E1519;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: left;
}

.showcase {
    border-radius: 15px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
}

a {
    color: #00B0F4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline
}

code {
    background-color: hsla(0, 0%, 100%, 0.08);
    border-radius: 3px;
    padding: 0px 2px;
}

td {
    width: 250px;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
}

span.mention {
    background: rgba(88, 101, 242, 0.3);
    color: rgb(222, 224, 252);
    font-weight: 500;

    transition-duration: 50ms;
    transition-property: background-color, color;

    border-radius: 3px;
    padding: 0px 2px;
    cursor: pointer;
}

span.mention:hover {
    background-color: rgb(88, 101, 242);
    color: white;

    transition-duration: 50ms;
    transition-property: background-color, color;
}

span.timestamp {
    background-color: hsla(0, 0%, 100%, 0.06);
    border-radius: 3px;
    padding: 0 2px;
}

input[type="text"], input[type="password"] {
    padding: 0px 9px;
    height: 35px;
    min-width: 0px;
    max-width: 100%;
    background: #242D32 none repeat scroll 0% 0%;
    border: 2px solid transparent;
    border-radius: 3px;
    outline: currentcolor none medium;
    color: rgb(220, 221, 222);
    font-size: 16px;
    font-family: Whitney, "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition-duration: 150ms;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: border-color, color;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: rgb(88, 101, 242);
}

.error-message {
    display: none;
    margin: 0;
    margin-top: 8px;
    color: rgb(255, 122, 107);
}
