
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #006442, #00a878);
  font-family: 'Vazirmatn', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 2rem;
  background-color: rgba(0,0,0,0.2);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  animation: fadeIn 1.8s ease-in-out;
}

img {
  width: 150px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  line-height: 1.8;
}

.contact {
  margin-top: 2rem;
  font-size: 1rem;
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1.1rem;
  }

  img {
    width: 120px;
  }
}