/* GLOBAL */
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background:
    linear-gradient(#e5e5e5 1px, transparent 1px),
    linear-gradient(90deg, #e5e5e5 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: #f7f7f7;
}

/* LAYOUT */
.map-container {
  display: flex;
  align-items: flex-start;
  padding: 80px;
  gap: 40px;
}

/* LIN+ STATIONS */
.line-column {
  position: relative;
  width: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line {
  width: 8px;
  height: 360px;
  background: #7b003f;
}

.station {
  width: 22px;
  height: 22px;
  background: white;
  border: 4px solid black;
  border-radius: 50%;
  z-index: 2;
}

.station.top {
  margin-bottom: 20px;
}

/* LABELS */
.label-column {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.label {
  font-size: 22px;
  color: #0033cc;
  text-decoration: none;
}

.label:hover {
  text-decoration: underline;
}

.top-label {
  display: flex;
  align-items: center;
  height: 22px;
}

.brand {
  font-size: 26px;
  font-weight: bold;
  color: #0033cc;
}
