body {
  background-color: #000;
  color: #fff;
  font-family: Tahoma, sans-serif;
  text-align: center;
  direction: inherit;
}

.page {
  display: none;
  margin-top: 50px;
}

.page.active {
  display: block;
  animation: fadeIn 0.8s ease-in-out;
}

input, button {
  padding: 10px;
  margin: 10px;
  border: none;
  border-radius: 5px;
}

input {
  width: 250px;
}

button {
  background-color: #444;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: #666;
}

.intro {
  margin-top: 40px;
}

.intro-img {
  height: 320px;
  width: 120px;
  border-radius: 10px;
}

.intro-text {
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
}

footer .insta-link {
  color: purple;        /* اللون البنفسجي */
  font-weight: bold;
  margin-left: 8px;
  text-decoration: none;
  cursor: pointer;
}

footer .insta-link:hover {
  text-decoration: underline; /* خط تحت عند المرور */
}



@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
