* {
  direction: rtl;
  margin: 0;
  padding: 0;
}

@keyframes left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.main {
  display: flex;
  flex-direction: column;
}

img {
  width: 1200px;
  height: 300px;
  box-shadow: black 8px 8px 20px 1px;
  opacity: 1;
  animation: fade 2s ease;
}

h1 {
  animation: left 2s ease;
}

.top {
  padding: 3rem;
  height: 30vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  font-size: 24px;
  background-color: #cd6528;
  color: white;
  text-align: center;
}
.down {
  display: flex;
  padding-top: 1.5rem;
  flex-direction: column;
  gap: 2rem;
  height: 40vh;
  justify-content: space-evenly;
  align-items: center;
}

.inside {
  text-align: center;
  height: 50px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

a {
  font-size: 38px;
  color: #cd6528;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .top {
    padding: 2rem;
    font-size: 20px;
  }
  img {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 720px) {
  .top {
    padding: 1rem;
    font-size: 14px;
    justify-content: space-between;
  }
  h1 {
    width: 120px;
  }
  img {
    width: 300px;
    height: 100px;
  }
}
