.contact-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-container .city {
  width: 100%;
  flex: 1;
  aspect-ratio: 2/1;
  background-repeat: no-repeat;
  background-size: cover;
}

.city > div {
  width: 100%;
  height: 100%;
}

.city .city-name {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.city .city-name h1 {
  font-size: 44px;
  letter-spacing: 25px;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
}

.city .contact-info {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.city .contact-info h2 {
  font-size: 32px;
  text-align: center;
  color: white;
}

.city .contact-info p {
  font-size: 20px;
  color: #dbdbdb;
}

.city .contact-info p a {
  color: #dbdbdb;
  font-weight: bold;
  text-decoration: underline;
}

.city:hover .city-name {
  display: none;
}

.city:hover .contact-info {
  display: flex;
}

.city:active .city-name {
  display: none;
}

.city:active .contact-info {
  display: flex;
}

@media (max-width: 640px) {
  .contact-container .city {
    aspect-ratio: 1;
  }

  .city .city-name h1 {
    letter-spacing: 10px;
    font-size: 36px;
  }

  .city .contact-info h2 {
    font-size: 28px;
  }

  .city .contact-info p {
    font-size: 18px;
  }
}
