* {
  box-sizing: border-box;
}

body {
  background-color: black;
  color: white;
  height: 100%;
  margin: 0;
}

body, header, main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

header {
  margin-top: 24px;
}

section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}

div {
  background-size: cover;
  border: 2px solid white;
  border-radius: 8px;
  display: flex;
  flex-direction: column-reverse;
  height: 320px;
  margin: 16px;
  width: 240px;
}

h1, h2, h3 {
  padding: 16px;
  margin: 0;
  text-align: center;
  width: 100%;
}

h1 {
  font-size: 48px;
}

h2 {
  border-bottom: 4px solid;
  border-image: linear-gradient(to right, transparent 25%, white 50%, transparent 75%);
  border-image-slice: 1;
  border-top: 4px solid;
  font-size: 32px;
  margin-bottom: 16px;
}

h3 {
  background-color: #000000BF;
  border-radius: 0 0 6px 6px;
  border-top: 2px solid white;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

a {
  color: white;
  text-decoration: none;
}
