.parent {
  display: flex;
  flex-direction: column;
  margin: 50px 0px 50px;
  gap: 20px;
}

.left { float: left; }
.right { float: right; }
.text-center { text-align: center; }


body {
  background-color: antiquewhite;
  font-family: Courier;
  color: black; 
  display: block;
  margin: 0px auto;
  max-width: 1100px;
}

.date {
  color: #444444;
  margin-top: 3px;
  margin-bottom: 3px;
}

.link {
  margin-top: 3px;
  margin-bottom: 3px;
}

.center {
  display: block;
  margin: 0px auto;
  width: 50%;
}

.centervert {
  display: block;
  margin-top: auto;
  margin-bottom: auto;
  height: 75%;
}

.outset {
  background-color: #bda17d;
  border: 10px outset tan;
  padding: 10px;
}

.border { border: 2px solid black }
.headertext { margin: 10px 0px 0px }

h2 { margin: 0px 15px 0px; padding: 0px; }
h1 { font-size: 300% }
h3 { margin: 0px 15px; }
p { margin: 15px; }

.mainheader {
  margin: 0px 20px;
}

.headergrid {
  display: flex;
  flex-wrap: wrap;
}

.albumreview {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header { flex: 1; flex-grow: 4; justify-content: space-between; } 
.nav { flex: 0.5; }
.flex1 { flex: 1; }
.flex4 { flex: 2; flex-grow: 4; }