body {
  min-width: 640px;
  margin: 0;
  padding: 0;
  background-color: #ddd;
  font-family: Noto Sans, sans-serif;
}

* {
  box-sizing: border-box;
}

.head {
  background-color: rgba(32,32,32,0.9);
}

.poster {
  width: 100%;
  height: 100vh;
  border: 0;
  margin: 0;
  object-fit: cover;
}

.overlay {
  background: url('../img/pattern.png');
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.3;
}

.brand {
  overflow: hidden;
  background-color: rgba(32,32,32,0.9);
  position: sticky;
  top: 0;
  width: 100%;
}

.brand h1 {
  margin: 0.5em 0 0 0;
  text-transform: uppercase;
  font-weight: 700;
  color: #eee;
}

.brand h2 {
  margin: 0.3em 0 1em 0;
  font-size: 1em;
  font-weight: 700;
  color: #ddd;
}

.align {
  max-width: 1088px;
  border: 0px;
  margin: auto;
  padding: 8px;
}

.nav {
  overflow: hidden;
  background-color: rgba(32,32,32,0.9);
  position: sticky;
  top: 0;
  width: 100%;
}

.nav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.nav a:hover {
  background: #ddd;
  color: black;
}

.content {
  margin-top: 0;
  width:100%;
  padding: 0;
  background-color: #ddd;
  color: #555;
}

.content a {
  text-decoration-line: underline;
  text-decoration-color: grey;
  color: black;
}

.content h1 {
  margin: 0 0 1em 0;
  color: #222;
}

.content img {
  margin: 8px;
}

.row {
  background-color: #fff;
  max-width: 1088px;
  border-radius: 16px;
  border: 4px double #ebebeb;
  margin: auto;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 8px;
  display: flow-root; /* make the floats in the childern keep the height */
}

.col {
  padding: 16px;
  border: 2px;
  width: 100%;
  height: 100%;
}

.col2 {
  border: 2px solid green;
  width: 49%;
  float: left;
  height: 100%;
  margin-right: 2%;
}
.col2:last-child {margin-right: 0;  }

.col3 {
  border: 2px solid brown;
  width: 32%;
  float: left;
  height: 100%;
  margin-right: 2%;
}
.col3:last-child {margin-right: 0;  }

.content p:first-child { margin-block-start: 0; }
.content p:last-child { margin-block-end: 0; }

.right { float: right; margin-left: 16px; }

.foot {
  background-color: #222;
  height: 100px;
  border: 0;
  width: 100%;
  margin: 0;
  padding: 10px 0 0 0;
}

.foot img {
  padding: 8px 0 16px 0;
}

.fcoll {
  border: 0;
  float: left;
  margin-right: 8px;
  font-size: 0.8em;
  color: white;
}

.fcolr {
  border: 0;
  float: right;
  margin-left: 8px;
}

