@font-face {
    font-family: "Vera";
    src: url("fonts/VeraMono.ttf") format("truetype");
}

@font-face {
    font-family: "Vera";
    src: url("fonts/VeraMono-Bold.ttf") format("truetype");
    font-weight: bold;
}

@font-face {
    font-family: "Vera";
    src: url("fonts/VeraMono-Italic.ttf") format("truetype");
    font-style: italic;
}

@font-face {
    font-family: "Vera";
    src: url("fonts/VeraMono-Bold-Italic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

.recent-thread {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 40ch;
    text-wrap: nowrap;
    margin: 0;
}

.thread {
    display: block;
}

.thread #content {
    display: flex;
    margin-top: 1em;
}

.thread #body {
    flex: 1;
}

.thread #replies div {
    background-color: #343434;
    padding: 2px;
    margin: 10px;
}

.thread img {
    max-width: 300px;
    max-height: 300px;
    margin-right: 5px;
}

body{
    background-color: #282828;
    color: #ddd;
    
    font-family: "Vera", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.center-text{
    text-align: center;
    margin: 0;
}

.left-text{
    text-align: left;
    margin: 0;
}

.right-text{
    text-align: right; 
    margin: 0;
}

#content p {
    margin: 0;
}

header{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

nav {
    width: 100%;
    border-bottom: solid 1px;
    box-sizing: border-box;
}

/* navigation links provided in ul */
nav ul {
    list-style-type: none;
    
    display: flex;
    justify-content: space-around;
    box-sizing: border-box;
    padding: 0px 20px 0px 20px;
}

nav ul li {
    padding-right: 30px;
}

.center {
    text-align: center;
    width: 100%;
}

.spoiler {
    background: black;
    color: black;
}

.spoiler:hover {
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
}

nav ul li {
    display: inline;
}

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

input, textarea
{
    font-family: "Vera", sans-serif;
    background-color: #141414;
    color: #eeeeee;
}