h1 {
  text-align: center;
}

p,
a {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.circles-container {
  display: flex;
  gap: 0rem 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.circle {
  display: flex;
  height: 12rem;
  width: 12rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  animation: pop 0.7s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.circle-left {
  background: linear-gradient(
    135deg,
    var(--main-color),
    color-mix(in srgb, var(--main-color) 80%, white)
  );
}

.circle-right {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    color-mix(in srgb, var(--secondary-color) 80%, white)
  );
}

.map {
  height: 20rem;
  width: 100%;
}

.map a {
  font-size: 10px;
  font-weight: 400;
}

@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
