.boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10pt;
}

.world-map {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 30px;
  position: relative;
}

.world-map p{
  font-size: 1.5em;
  position: absolute;
  font-weight: 800;
  bottom: 8px;
  left: 16px;
  color: black;
}

@media(max-width: 400px){
  h1{
    font-size: 1.3em;
  }
  h2{
    font-size: 1em;
  }
  .world-map p{
    font-size: 1em;
  }
}

.world-map img {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.box {
  display: flex;
  flex-direction: column;
  background-color: var(--color-lighter);
  padding: 10pt;
  gap: 10pt;
 /* disable underline and blue for links */
  text-decoration: none;
  color: var(--color-dark);
}

.box:hover{
  background-color: var(--color-primary);
  color: var(--color-white);
}

.box p {
  margin: 0;
  text-decoration: none;
  color: var(--color-dark);
}

.box.d p:first-child {
  font-weight: 800;
  font-size: 24pt;
}

.box.d p:last-child {
  font-weight: 500;
  font-size: 11pt;
}

.box.l {
  margin-bottom: 10pt;
}

.box.l p:first-child {
  font-weight: 700;
  font-size: 9pt;
  border: 1px solid #00000055;
  width: fit-content;
  padding: 3pt 4pt;
  border-radius: 3pt;
}

.box.l p:nth-child(2) {
  font-weight: 500;
  font-size: 12pt;
}

.box.l p:last-child {
  font-weight: 700;
  font-size: 9pt;
  opacity: .5;
}

@media screen and (max-width: 750px) {
  .boxes {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 420px) {
  .boxes {
    grid-template-columns: 1fr;
  }
}
