@import url("./font-styles.css");

* {
  -moz-font-feature-settings: "ss03" !important;
  -webkit-font-feature-settings: "ss03" !important;
  font-feature-settings: "ss03" !important;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: "IRANSans", IRANSans, tahoma, serif !important;
}

.container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 min(5rem, 7vw);
}

.text-content {
  flex: 1;
  padding-left: 1rem;
}

h1 {
  font-size: 2rem;
}

.logo {
  width: 20rem;
  height: auto;
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

a {
  color: #4D98A7;
}

a:visited {
  color: purple;
}

@media (max-width: 768px) {
  body {
    height: auto;
  }

  .container {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    padding-left: 0;
    margin-top: 3rem;
  }

  .logo {
    padding-top: 5rem;
  }
}
