@font-face {
  font-family: "isxv";
  src: url("./font/IranSans.woff") format("woff"),
    url("./font/IranSans.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "isxv";
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(31, 92, 136, 0.2);
}

.container {
  width: 70%;
  background: rgba(31, 92, 136, 0.4);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.9px);
  -webkit-backdrop-filter: blur(7.9px);
  border: 1px solid rgba(31, 92, 136, 0.65);
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 3rem;
  gap: 16px;
}

.wrapper h1 {
  font-size: 3em;
  color: rgba(31, 92, 136);
  font-weight: normal;
  text-align: center;
}

.wrapper p {
  font-size: 1.5em;
  color: rgba(31, 92, 136);
  text-align: center;
}

.image {
  width: 450px;
}

.image img {
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
  .image {
    width: 300px;
  }
  .wrapper h1 {
    font-size: 2em;
  }
}
