html {
    font-family: "Anonymous Pro", monospace;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

body {
    font-size: 22px;
    background-color: #1c152c;
    color: #c1c1c1;
    display: flex;
    flex-direction: column;
    padding: 0% 13%;
    padding-bottom: 5%;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Oswald", serif;
    color: #f26b37;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

p {
    font-size: 1em;
}

header {
    text-align: center;
}

main.blog-container {
    display: flex;
    flex-direction: column;
}

.post-container {
    margin-left: 0%;
}

.post-title {
    margin-left: 10%;
}

.post-description {
    margin-left: 4%;
}

.post-link {
    padding: 1% 4%;
    margin-left: 4%;
    text-align: center;

    border-radius: 10px;
    transition: 0.3s;
}

.post-link:hover {
    background-color: #0b0912;
    border-radius: 20px;
}

.nav-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-size: 1.2em;
}

.links {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    font-size: 1em;
}

.link-container {
    padding: 1% 6%;
    text-align: center;

    border-radius: 10px;
    transition: 0.3s;
}

.link-container:hover {
    background-color: #0b0912;
    border-radius: 20px;
}

.copyright {
    text-align: center;
}

img {
    max-width: 60%;
    margin: auto;
    height: auto;
    object-fit: scale-down;
    display: block;
}

.ftier-banner-img {
    max-width: 100%;
    margin: auto;
    height: auto;
    display: block;
}



hr {
    border: 1px solid #130f1f;
    border-radius: 1px;
}

.nav-hr {
    border: 1px solid #f26b37;
    border-radius: 1px;
}

code {
    display: block;
    margin: 0% 4%;
    font-weight: 550;
    color: #c1c1c1;
    background: rgba(11,9,18,1);
    border: none;
    border-left: 2px solid #ba1f33;
    border-right: 2px solid #ba1f33;
    padding: 1% 4%;
}

strong {
    font-weight: 650;
}

a {
    font-size: 1em;
    color: #ba1f33;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

.page-header {
    color: #f26b37;
    text-align: center;
}

div.form-group {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;

    padding-top: 2%;
    padding-bottom: 2%;
}

label {
    text-align: center;
}

input {
    font-family: "Anonymous Pro", monospace;
    font-size: 1em;
    flex-grow: 4;
    font-weight: 550;

    color: #c1c1c1;
    background: linear-gradient(90deg, rgba(11,9,18,1) 75%, rgba(28,21,44,1) 100%);

    padding: 1% 1%;
    border: none;
    border-left: 2px solid #ba1f33;

    max-width: 50%;
}

button {
    font-family: "Anonymous Pro", monospace;
    font-size: 1em;
    font-weight: 550;

    color: #c1c1c1;
    background-color: #0b0912;

    padding: 1% 1%;
    border: none;

    transition: 0.3s;
}

button:hover {
    background-color: #000;
    border-radius: 20px;
}
