* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 0;
  background-image: url("images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  color: darkblue;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

hr {
  width: 100%;
}

.link-strip-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
}

h1 {
  text-align: center;
  margin: 0 0 40px;
}

.link-strip {
  position: relative;
  display: flex;
  width: max-content;
  min-width: 100%;
  min-height: 260px;
  padding-right: 24px;
}

.link-strip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: darkblue;
  transform: translateY(-50%);
}

.strip-item {
  position: relative;
  flex: 0 0 220px;
  min-width: 0;
}

.strip-item::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  background: darkblue;
  transform: translateX(-50%);
}

.strip-item:nth-child(odd)::before {
  height: 30px;
  bottom: 50%;
}

.strip-item:nth-child(even)::before {
  height: 30px;
  top: 50%;
}

.item-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(180px, 90%);
  text-align: center;
}

.strip-item:nth-child(odd) .item-content {
  bottom: calc(50% + 36px);
}

.strip-item:nth-child(even) .item-content {
  top: calc(50% + 36px);
}

.item-content a {
  display: inline-block;
  color: darkblue;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 6px;
}

.item-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
}
