body {
  font-family: sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  direction: rtl;
}

.container {
  max-width: 400px;
  margin: 1rem auto;
  background: #fff;
  padding: 1.5rem;
  padding-top: .5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;

  h1 {
    color: #228452;
    font-size: 3rem;
    font-weight: 600;
  }

  p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b8b8bff;
  }
}

.search {
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    gap: 1rem;
}

input {
  width: 100%;
  padding: 0.8rem;
  direction: rtl;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

button {
  background-color: #27ae60;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 16px;
  font-weight: 700;
  font-family: sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.result {
  margin-top: 2rem;
  font-size: 18px;
}

.container img {
  max-width: 90%;
  height: auto;
  margin-bottom: 1rem;
}