@font-face {
    font-family: ZeroThrees;
    src: url(ZeroThrees.ttf);
  }

html, body, section {
    height: 100%;
}

body {
    background-color: #009fba;
    font-family: ZeroThrees;
    color: #044d56;
}

section {
    display: flex;
    flex-direction: column;
}

div.header {
    font-size: 75px;
    text-align: center;
    font-weight: bold;
}

div.header a {
    color: #044d56;
    text-decoration: none;
}

div.body, div.sidebar {
    border: 5px solid #044d56;
    padding: 5px;
    border-radius: 10px;
}

div.sidebar {
    height: fit-content;
    width: 250px;
}

div.body p, div.sidebar p, div.body h1, div.body h2, div.body h3, div.body ul {
    margin: 0;
}

div.main {
    display: flex;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-grow: 1;
}

div.body {
    margin-left: 20px;
    width: calc(100% - 270px);
}

div.footer {
    margin: 10px 0px 10px;
    text-align: center;
}

div.footer p {
    margin: 0px;
}

ul.navbar {
    list-style-type: none;
    margin: 0 0 10px;
    padding: 0;
    background-color: #f1f1f1;
    border: 3px solid #044d56;
}

li.navbar_item {
    border-top: 3px solid #044d56;
    background-color: #009fba;
}

li.navbar_title {
    font-weight: bold;
    background-color: #044d56;
    color: #009fba;
}

li.navbar_item a {
    display: block;
    color: #044d56;
    text-decoration: none;
}

li.navbar_item a:hover {
    background-color: #03778b;
    color: #044d56;
}

div.social {
    display: flex;
}

div.social a.img_link {
    width: 42px;
    height: 42px;
}

div.text_link {
    display: flex;
    align-items: center;
    width: 100%;
}

div.text_link a {
    display: block;
    color: #044d56;
    text-decoration: none;
    padding-left: 5px;
    width: 100%;
}

div.text_link:hover {
    background-color: #03778b;
    color: #044d56;
}
div.sidebar h3 {
    margin: 5px 0 2px;
}

br {
    display: block;
    content: "";
    margin-bottom: 5px;
}

figure {
    margin: 0px;
    width: fit-content;
}

figcaption {
    text-align: center;
}

form.signin-form input{
    padding: 2px;
    margin-top: 5px;
    display: block;
}

form.signin-form {
    background-color: #044d56;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
}

input {
    font-family: ZeroThrees;
}

input[type=text].signin-text, input[type=password].signin-text {
    width: 230px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-family: ZeroThrees;
    border: 0px;
    background-color: #009fba;
    padding-top: 5px;
    padding-bottom: 5px;
}

span.signin-title {
    display: block;
    color: #009fba;
    font-weight: bold;
    text-align: center;
}

input[type=submit].signin-submit {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    border: none;
    background-color: #009fba;
    color: #044d56;
    border-radius: 5px;
}
