/* @import "https://www.nerdfonts.com/assets/css/webfont.css"; */

html {
  display: flex;
  width: 100%;
  height: 100%;
  font-size: 16px;
}

body {
  display: flex;
  flex-grow: 1;
  align-items: stretch;
  background: #2A3A2A;
  color: #fee;
  flex-direction: column;
  font-family: monospace;
  font-size: 1rem;
}

@media screen and (width <=300px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  color: #eef;
}

a:visited {
  color: #eae;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h3,
h4,
h5 {
  margin: 0.25em
}

#navigation ul {
  display: flex;
}

#banner {
  border: 1px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  align-self: center;
  margin: 1em;
}

#banner h3 {
  font-weight: 200;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

#banner nav ul li {
  padding: 0.25em;
}

main {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}

form {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.blog-post {
  margin: 1em;
}

#footer {
  display: flex;
  justify-content: end;
  border-top: 1px solid;
}

#footer address ul {
  display: flex;
  gap: 1em;
}

fieldset {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.blog-post h4 {
  border-bottom: 1px solid;
  margin-top: 1em;
}
