/*
Theme Name: Comming soon
Author: Mahdi Bahrami
Author URI: https://mahdi-bahrami.ir
Author Email: mahdi.bahrami74@gmail.com
Description: A comming soon landing page.
Version: 1.0.0
*/

@import "styles/normalize.css";

:root {
  --color-primary: #2584ff;
/*   --color-headings: #1b0760; */
	  --color-headings: #fafafa;
}

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

::selection {
  background: var(--color-primary);
  color: #fff;
}

@font-face {
  font-family: "iransans";
  src: url("./assets/fonts/iransans/IRANSansLight.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "iransans", "iransansbold", Helvetica, Arial, sans-serif;
}

img {
  width: 100%;
}

h1,
h3,
h6 {
  color: var(--color-headings);
  margin: 1rem 0;
}

h1 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.2rem;
}

.background {
  background: url("./assets/images/newyork.jpg");
  background-size: cover;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comming-soon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(167, 199, 231, 0.5);
  border-radius: 15px;
  padding: 2rem;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  h3 {
    font-size: 2rem;
  }

  .comming-soon {
    padding: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 5rem;
  }

  .comming-soon {
    padding: 3rem;
  }
}
