:root {
    --selection-blue: rgb(122, 192, 255);
}

body {
    background-color: black;
    margin-left: 0;
    margin-top: 0;
    color: white;
    font-family: monospace;
}

a {
    color: inherit;
    text-decoration: inherit;
}

a:hover {
    color: var(--selection-blue);
}

header {
    margin-top: 5px;
    margin-bottom: 5px;
}

hr {
    color: inherit;
}

header button,
form button {
    background: transparent;
    border: none !important;
    font-size: 0;
    margin: 0;
    cursor: pointer;
}

form button img {
    height: 10%;
    margin-top: -100%;
    margin-bottom: -40%;
}

form {
    outline-style: solid;
    outline-color: rgb(32, 32, 32);
    outline-offset: 10px;
    width: 90%;
    margin-left: 5%;
    margin-top: 3%;
}

form label {
    font-size: x-large;
}

form input[type=text],
form input[type=password],
form input[type=file] {
    margin-bottom: 1%;
    width: 50%;
    height: 10%;
    background-color: black;
    border-color: white;
    font-size: large;
    color: white;
    padding: 1%;
}

form input[type=submit] {
    background-color: var(--selection-blue);
    color: white;
    height: 2%;
    width: 10%;
    cursor: pointer;
}

#header-container {
    position: fixed;
    max-height: 50px;
    background-color: black;
    opacity: 1;
    width: 100%;
}

#header-container .header-right-bubble {
    float: right;
    margin-right: 1%;
    margin-top: 2.5px;
}

#header-logo {
    margin-left: 5px;
    margin-top: 2.5px;
    margin-bottom: auto;
    float: left;
    display: block;
}

#main {
    position: fixed;
    margin-top: 50px;
    width: 100%;
}

#login-failed-warning {
    outline-style: solid;
    outline-color: rgb(255, 0, 0);
    width: 90%;
    margin-left: 5%;
    margin-top: 3%;
    font-size: x-large;
    background-color: rgba(255, 0, 0, 0.495);
}

#login-failed-warning div {
    padding: 1%;
}

#footer-container {
    width: 100%;
}

#hit-bottom-text {
    text-align: center;
    width: 100%;
    font-size: 20px;
    height: 40px;
}

#form-seperator {
    margin-top: 50px;
}

.underline {
    text-decoration: underline;
}

.header-link {
    font-size: larger;
    margin-left: 10px;
    padding-top: 11px;
    float: left;
    display: block;
}

.rounded-picture {
    border-radius: 50%;
    display: block;
}

.post {
    margin-left: 5px;
}

.post-left-element {
    display: block;
    float: left;
    margin-left: 5px;
    margin-top: 5px;
}

.post-tag {
    margin-left: 15px;
    font-style: italic;
}

.post .rounded-picture {
    float: left;
}

.post hr {
    margin-top: 15px;
    margin-right: 5px;
    color: rgb(64, 64, 64)
}

.form-header {
    font-size: large;
    text-align: center;
}