/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." *
   
   /* === COLOR PALETTE === */
:root {
  --bg-main: #0B2E05;
  --bg-accent: #1B3C0D;
  --text-main: #586E4F;
  --text-faint: #3F5338;
}

/* === GLOBAL === */
body {
  margin: 0;
  background-color
  color
  font-family: "American Typewriter", "Courier New", monospace;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 6px
    );
}

/* === LOGO === */
.logo {
  position: fixed;
  top: 15px;
  left: 15px;
  opacity: 0.7;
}

.logo img {
  width: 60px;
}

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 20px;
  right: 30px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color:;
  font-size: 14px;
  letter-spacing: 2px;
}

nav a:hover {
  text-decoration: underline;
}

/* === MAIN CONTENT === */
.container {
  max-width: 700px;
  margin: 120px auto;
  padding: 20px;
}

/* === PANELS === */
.panel {
  border: 1px solid;
  background-color: rgba(27,60,13,0.4);
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

/* === TITLE === */
h1 {
  margin: 0;
  font-size: 42px;
  letter-spacing: 6px;
}

/* === STATUS LINE === */
.status {
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 3px;
}

/* === FRAGMENT TEXT === */
.fragment {
  font-style: italic;
  line-height: 1.8;
}

/* === FOOTER === */
footer {
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.6;
}
