@font-face {
  font-family: "Loew Next Arabic";
  src: url("LoewNextArabic-Regular_10.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family:
    "Loew Next Arabic", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #ffffff;
  background-color: #23355b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3.2vw, 2.5rem);
  background-color: #23355b;
  background-image: url("bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content {
  width: min(100%, 36rem);
  text-align: center;
}

.logo {
  display: block;
  margin-inline: auto;
  width: clamp(11rem, 42vw, 18rem);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: clamp(7rem, 22vh, 12rem);
}

.title {
  margin: 0;
  font-family:
    "Loew Next Arabic", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #ffffff;
  text-indent: 0.45em;
}

@media (max-width: 768px) {
  .logo {
    margin-bottom: clamp(3rem, 10vh, 5rem);
  }
}

@media (max-width: 560px) and (orientation: landscape) {
  .page {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .logo {
    width: clamp(8rem, 28vw, 12rem);
    margin-bottom: 1.5rem;
  }

  .title {
    font-size: clamp(0.9rem, 2vw, 1.15rem);
  }
}
