/*/main/*/
* {
    box-sizing: border-box;
}

body {
    overflow: auto;
    color: #f1f1f1;
    background: linear-gradient(0deg, #0b0b0b 0%, #1f1d20 33%);
    font-family: "Inconsolata", monospace;
    font-weight: 400;
    font-size: 1.2em;
    font-style: normal;
}

.container {
    display: flex;
    background-color: #00000000;
    max-width: 800px;
    max-height: max-content;
    margin: 50px auto;
    border: 2px #000;
}

.content {
    overflow: hidden;
    padding: 0px;
    flex-grow: 1;
}

.main {
    max-width: 800px;
    background-color: #1f1d20;
    margin: 0px 0px;
    padding: 5px 5px;
    border: 2px #f1f1f1 solid;
    margin-bottom: 20px;

}

/*/hero/*/
.hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-left: 5px;
    text-shadow: 4px 3px 0px rgb(65, 63, 70);
}

.hero {
    margin-bottom: 10px;
    padding: 10px;
    border: 2px #c8c6ca solid;
    background: linear-gradient(0deg, #0b0b0b 0%, #1f1d20 20%);
}

/*/text/*/
.title {
    margin-left: 10px;
}

h2,
p {
    margin: 10px;
}

hr {
    color: #979598;
    margin: 15px;
}

/*/ nav bar/*/
.navbar {
    overflow: hidden;
    background-color: #35333b;
}

.navbar a {
    float: left;
    font-size: 1.1em;
    color: #f1f1f1;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.subnav {
    float: left;
    overflow: hidden;
}

.subnav .subnavbtn {
    font-size: 1.1em;
    border: none;
    outline: none;
    color: #f1f1f1;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover,
.subnav:hover .subnavbtn {
    background-color: #1f1d20;
}

.subnav-content {
    display: none;
    position: absolute;
    left: -1;
    background-color: #e1dede;
    width: 20%;
    z-index: 1;
}

.subnav-content a {
    float: left;
    color: #0b0b0b;
    text-decoration: none;
}

.subnav-content a:hover {
    background-color: #eee;
    color: black;
}

.subnav:hover .subnav-content {
    display: block;
}

/*/footer/*/
.end {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.end a {
    color: #f1f1f1;
}

/*/latest posts/*/
.latest-posts-section h2 {
    margin-left: 15px;
}

.post-card {
    margin: 5px;
    padding: 8px;
    border: 1px #c8c6ca dashed;
}

.post-card a {
    margin: 5px;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #35333b;
    color: #f1f1f1;
    text-align: center;
    border: 1px #c8c6ca solid;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.post-card a:hover {
    text-decoration: underline;
    background-color: #2a282f;
    color: #e1dede;
    border: 1px #a8a5aa dashed;
}

.post-card h3 {
    font-size: 1.5em;
}