body {
  font-family: "Tajawal", sans-serif;
  color: #20665c;
  background: #cfcfcf;
  background-image: radial-gradient(
    circle farthest-corner at 50% 0%,
    #fff,
    #cfcfcf
  );
  background-size: 100% 150%;
  direction: ltr;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.main {
  max-width: 700px;
  width: 90vw;
  margin: auto;
  display: block;
}
.content {
  width: 100%;
  display: block;
}
.content p {
  text-align: center;
  font-size: smaller;
}
.head {
  text-align: center;
  margin: auto;
  padding: 20px 5px;
}
.head .logo img {
  width: 320px;
  max-width: 70%;
}
.head p {
  margin: 15px 0 0 0;
  text-transform: uppercase;
  font-size: small;
}

.des {
  max-width: 80%;
  border-radius: 30px;
  margin-bottom: 20px;
  opacity: 0.8;
  transition: all 0.5s ease-in-out;
}
.des:hover {
  opacity: 1;
}

.buttons {
  text-align: center;
  margin: auto;
}
.buttons .btn {
  border: none;
  padding: 15px 15px;
  width: 80%;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: "Almarai", sans-serif;
  font-size: 16px;
  margin: 10px 5px;
  cursor: pointer;
  border-radius: 50px 0px 50px 50px;
  transition: all 0.2s ease-in-out;
}
.buttons .btn:not(:disabled):hover {
  background-color: #20665c;
  margin: 20px 5px;
  color: #fff;
  border: solid 2px #fff;
}
.btn i {
  color: #20665c;
  margin-right: 10px;
}
.btn:not(:disabled):hover i {
  color: #ffcd75;
}
.btn:disabled,
.btn:disabled:hover {
  background-color: #eaeaea;
  color: #666666;
  font-style: italic;
}
