@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&display=swap");
*,
body,
html,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Cairo", sans-serif;
  /* font-size: 110%; */
  color: rgb(44, 71, 58);
}
a {
  color: inherit;
  text-decoration: none;
}
i {
  padding: 1rem;
  font-size: 130%;
}
.arch-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("./img/architecture-wallpapers-9.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}
.card {
  background-color: rgba(255, 255, 255, 0.8);
  margin: 2vh auto;
  min-height: 90vh;
  width: 80%;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-image: url("./img/bg-Logo-t.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 80%;
}
.card:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.card-header {
  background-color: rgba(44, 71, 58, 0.75);
  text-align: center;
  clip-path: ellipse(95% 100% at 50% 0%);
  border-radius: 10px 10px 0 0;
  padding: 0.5rem 0;
  background-image: url("./img/logo-text-ar-w.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60%;
  height: 60px;
}

.card-footer {
  text-align: center;
  background-color: rgba(44, 71, 58, 0.8);
  clip-path: ellipse(70% 95% at 50% 100%);
  border-radius: 0 0 10px 10px;
  padding: 0.2rem 0;
}

.card-footer a {
  color: whitesmoke;
  text-decoration: none;
}
.card-body {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.qr {
  padding-top: 0.5rem;
}
