@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  direction: rtl;
  font-family: "Tajawal", serif;
  background: #f5f6fa;
}
.container {
  max-width: 90%;
  min-height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  gap: 1rem;
}
h1 {
  margin-top: 2rem;
  text-align: center;
}
img {
  width: 50px;
  margin: 5px 0;
}
.top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;

  @media (max-width: 800px) {
    flex-direction: column;
    gap: 1rem;
  }
}
.top div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: 0 0 2px #7572725e;
  padding: 1rem;
  border-radius: 10px;
  transition: 0.3s;
}
h3 {
  font-weight: 400;
}
h3 span {
  font-weight: 600;
}
.cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  overflow: hidden;
  @media (max-width: 1250px) {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  @media (max-width: 920px) {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
  @media (max-width: 650px) {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
.cards .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: 0 0 2px #7572725e;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  transition: 0.3s;
}
.top div:hover,
.card:hover {
  transform: scale(1.1);
}
.cards h3 {
  font-weight: 600;
  text-align: center;
}
#cities {
  padding: 0.8rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border-radius: 10px;
  border: 1px solid #bebebe57;
  outline: none;
}
