body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: #333;
}

header {
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

header h1 {
  margin-right: auto;
  font-size: 32px;
}

header a {
  text-decoration: none;
}

header a div {
  display: grid;
  place-items: center;
}

.title {
  display: grid;
  place-items: center;
  height: 30vh;
  color: #fff;
  background-image: url("./images/sample2.jpg");
  font-size: 32px;
}

article {
  width: clamp(1px, 90%, 800px);
  margin: 0 auto;
}

section h1 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.overview .row {
  margin-bottom: 16px;
}

.overview .row .key {
  font-size: 14px;
  font-weight: bold;
  color: #555;
}
