body {
  margin: 0;
  font-family: Gubbi;
}

#banner {
  background-color: black;
  width: 100%;
  height: 7rem;
  overflow: hidden;
  user-select: none;
  display: grid;
  grid-template-columns: 1fr 4rem;
}

#header {
  display: inline-block;
  text-align: center;
  padding-left: 4rem;
  overflow: hidden;
}

#header_favicon, #header_icon {
  height: 6rem;
  margin: 0.5rem;
}

#week_selector_container {
  text-align: center;
  margin-top: 1rem;
}

#week_selector {
  font-size: 1.25rem;
  height: 2rem;
}

.link_button {
  background-color: black;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.25rem;
  border-radius: 0.25rem;
  text-decoration: none;
}

#article_board {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.article_card {
  /*aspect ratio - 16:9 :: 35.5:20 */
  height: 12.5rem;
  width: 20rem;
  padding: 0.5rem;
  border-bottom: 1px solid gray;
  margin-top: 0.5rem;
  text-decoration: none;
}

.article_card_title {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.article_card_thumbnail_container {
  height: 10rem;
  width: 100%;
  text-align: center;
  background-color: transparent;
  user-select: none;
}

.article_card_thumbnail {
  height: 100%;
  max-width: 100%;
  color: white;
  font-size: 1.25rem;
}

.article_card:hover {
  background-color: lightgray;
}

.article_card:active {
  background-color: gray;
}