
/* indented horizontal containers default setting */
.h-container-indented {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 2em;
    margin-right: 2em;
    text-align: left;
}
/* horizontal split containers default setting */
.hs-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* indented horizontal split containers default setting */
.hs-container-indented {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 2em;
    margin-right: 2em;
}
/* vertical containers default setting */
.v-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
/* styling for flex containers */
div {
    color: #E6D8D0;
    flex-wrap: wrap;
    font-family:courier, fixed, monospace;
    font-size: 21px;
    font-size: 21px;
    margin: 0 2em 0 1em;
    text-align: right;
}
/* hyperlinks formatting */
a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}
/* body formatting */
body {
    background-color: #1a1a1a;
}
/* main header formatting */
h1 {
    background: #2d282d;
    color: #76B78E;
    font-family: courier, fixed, monospace;
    font-size: 1.5rem;
    padding: 1rem;
    text-align: left;
    text-decoration: none;
}
/* secondary header formatting */
h2 {
    background: #2d282d;
    color: #76B78E;
    font-family: courier, fixed, monospace;
    font-size: 28px;
    padding: 1rem;
    text-align: left;
    text-decoration: none;
}
/* header bar line formatting */
hr {
    color: #76B78E
}

p1 {
    color: #feffe5;
    font-family: courier, fixed, monospace;
    font-size: 21px;
    margin-left: 2em;
    text-align: left;
    text-decoration: none;
}

ul {
    color: #feffe5;
    font-family: courier, fixed, monospace;
    font-size: 21px;
    margin-left: 3em;
    text-align: left;
    text-decoration: none;
}

.logo {
    background: none;
}

.nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
}

.nav-links {
     list-style: none;
     display: flex;
     gap: 1.5rem;
}

.nav-links a {
     color: #76B78E;
     text-decoration: none;
}

@media (max-width: 600px) {
  .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
  }

  .hero h2 {
    font-size: 2rem;
  }
}