:root {
  --orange: #fa824c;
  --text-color: #1d1f31;
  --white: #eaf1f1;
  --blue: #3c91e6;
  --green: #9fd356;
  --lightest-blue: #c9d9e6;
  --dark-blue: #8d9dc9;
  --lighter-shadow: #dadada;
  --shadow: #00000041;
  --font-small: "MS UI Gothic", sans-serif;
  --font-title: "Nunito", sans-serif;
  --font-main-title: "Syncopate", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url(blog-images/striped-bg.gif);
  padding: 1rem;
  max-width: 800px;
  font-family: var(--font-small);
  font-size: 1rem;
  margin-inline: auto;
}

header {
  text-align: center;
  font-family: var(--font-main-title);
  font-size: 2.0rem;
  margin: 30px 0 5px 0;
}

header a {
  text-decoration: none;
  color: var(--green);
}

#menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px;
}

#menu a {
  text-decoration: none;
  color: var(--blue);
}

#menu a:hover {
  color: var(--green);
}

#main-content {
  margin: 30px 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 3fr;
}

.left-column {
  border-right: 1px solid var(--orange);
}

.left-column dd {
  color: var(--text-color);
}

.left-column h1 {
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 200;
}

.left-column, section {
  padding: 0 1rem;
}

.left-column h1:first-of-type {
  margin-bottom: 10px;
}

dl {
  margin-bottom: 10px;
}

dl a {
  text-decoration: none;
  color: var(--orange);
}

dl a:hover {
  color: var(--green);
}

dd {
  margin-bottom: 5px;
}

.left-column h1:not(:first-of-type) {
  margin-top: 10px;
}

.left-column li {
  list-style-type: none;
}

.year-click {
  border: none;
  background: 0 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-small);
  font-weight: bold;
  color: var(--orange);
  font-size: 1rem;
}

.year-click:hover {
  color: var(--green);
}

.archive {
  margin-bottom: 20px;
}
.archive-list {
  display: none;
  padding-left: 15px;
  margin: 5px 0 10px 0;
}

.archive-list.open{
    display:block;
}

.archive-list li {
  line-height: 1.5;
}

.archive-list a {
  text-decoration: none;
  color: var(--blue);
}

.archive-list a:hover {
  color: var(--orange);
}

.post-count {
  text-align: center;
  font-size: 0.9rem;
  color: var(--green);
  font-weight: bold;
}

section h1 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: var(--blue);
  font-weight: 300;
}

section p {
  text-align: justify;
}

.entry {
  margin-bottom: 0.4rem;
  color: var(--text-color);
}

.entry a {
  color: var(--blue);
  text-decoration: none;
}

.entry a:hover {
  color: var(--orange);
}

#main-img {
    padding-left: 100px;
    padding-left: 50%;
    padding-top: 15px;
}

 .entry-img {
  border: 1px solid var(--blue);
  width: 200px;
  margin-left: 150px;
  margin-top: 10px;
}


footer {
  text-align: center;
  margin-top: 50%;
  color: var(--orange);
}

@media (max-width: 768px) {

  body {
    padding: 0.8rem;
  }

  #main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .left-column {
    border-right: none;
    border-bottom: 1px solid var(--orange);
    padding-bottom: 1.5rem;
    text-align: center;
  }


  section {
    padding-top: 0;
  }

.entry-img {
    display: block;
    margin: 15px auto;
}

#main-img {
    padding-left: 50%;
}

  header {
    font-size: 2rem;
  }

  footer {
    margin-top: 3rem;
  }

}