* {
  box-sizing: border-box;
}

body {
  font-family: 'Times New Roman', Times, serif;
  padding: 10px;
  background: #8C0000;
}

/* Header/Blog Title */
.header {
  padding: 20px;
  font-size: 40px;
  text-align: center;
  background-image: linear-gradient(to top, #000000, #820000);
  border: 3px solid #000000;
}


/* Add a card effect for articles */
.parent-container {
  float: right;
  width: 80%;
  line-height: 15px;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  background-color: #700000;
  padding: 20px;
  margin-top: 20px;
  border: 3px solid #000000;
  }

.child {
  flex-basis: 200px; /* Sets a base size */
  flex-grow: 2;     /* Allows the item to grow */
  flex-shrink: 1;   /* Allows the item to shrink */
  background-color: #FAE2A7;
  border: 1px solid #FAB59B;
  
}
.container {
  float: left;
  width: 18%;
  line-height: 15px;
  display: flex;
  flex-flow: column;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;
  background-color: #700000;
  padding: 20px;
  margin-top: 20px;
  border: 3px solid #000000;
  }
}
a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .parent-container, .parent-container-left {
    width: 100%;
    padding: 0;
  }
}