html,
body {
  direction: rtl;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: Noon, sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover, a:focus {
  color: green;
}

.wrap {
  width: 100%;
  height: 100%;
  background-color: #ccc;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.wrap .head {
  font-size: 10px;
  font-weight: 600;
  width: 100%;
}
.wrap .head ul {
  list-style: none;
  padding: .5rem;
  margin: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}
.wrap .head ul li + li {
  margin-left: 1.5rem;
}
.wrap .main {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: auto 0;
  padding: 1rem;
}
.wrap .foot {
  padding-bottom: 0.5rem;
}
.wrap .foot img {
  height: 20px;
  width: auto;
}