:root {

     /* colors */
  --content: var();

  --main-light1: #8197BC;
  --main-light2: #536E9C;
  --main-mid1: #355284;
  --main-mid2: #213E6F;
  --main-dark1: #0D2855;

}


@font-face {
    font-family: intel one;
    src: url('/fonts/intelonemono/IntelOneMono-Regular.ttf');
}

@font-face {
    font-family: intel one;
    src: url('/fonts/intelonemono/IntelOneMono-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: intel one;
    src: url('/fonts/intelonemono/IntelOneMono-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: intel one;
    src: url('/fonts/intelonemono/IntelOneMono-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}


body {
    font-family: 'intel one', sans-serif;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}


* {
    box-sizing: border-box;
}


#header {
    background-image: none;
    background-color: gray;
    height: 100px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;

}


#eye1 {
    height: 100px;
}


#mainpage-container {
    max-width: 900px;
    margin: 0 auto;
}

#grid { 
    max-width: 1150px;
    display: grid;
    grid-auto-flow: column;
    margin: 0 auto;
}

#flex {
    display: flex;
    flex-direction: column;
    
}

main {
    order: 1;
    height: auto;
    width: 100%;
    background-color: black;
    border-color: red;
    border-radius: 0px 0px 12px 12px;
    border-width: 4px;
    border-style: inset;
    color: white;
    padding: 15px;
}

main a {
    color: red;
    text-decoration: none;
}

main a:hover {
    color: green;
}

.content {
    padding: 20px;
    height: auto;
}

.large-text {
    font-size: large;
}

.small-text {
    font-size: small;
}

footer {
    color: white;
}

/* 

Tongue Blog CSS

*/

#blog-content {
    opacity:1;transition:opacity 0.4s ease;
}

#blog-content.fade-out {
    opacity: 0;
}

#blog-nav {
    text-align:center;
}

.greyedout {
    opacity:0.5;pointer-events:none;
}

#tongue-container {
    max-width: 750px;
    margin: 0 auto;
    width: 750px;
}

.blank-grid {
    width: 175px;
}

.nav-grid {
    width: 175px;
    margin-top: 50px;
    position: sticky;
}

nav.stomach-nav {
    width: 100%;
    padding: 4px;
    height: min-content;
    position: sticky;
    top: 0;
    z-index: 1;
    overflow-x: hidden;
    border-color: red;
    border-width: 4px;
    border-style: outset;
}

a.stomach-nav {
    font-size: small;
    color: red;
}

a.stomach-nav:hover {
    color: green;
}

#post-list-title {
    color: blue;
}

#post-image-grid {
    display: grid;
    align-items: left;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    overflow-wrap: normal;
}

#post-image-grid img {
    height: 100px;
    width: auto;
}