/* Fonts */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: normal;
  font-display: block;
  src: url('/assets/webfonts/nunito-sans/nunitosans-regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 200;
  font-display: block;
  src: url('/assets/webfonts/nunito-sans/nunitosans-extralight.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  font-display: block;
  src: url('/assets/webfonts/nunito-sans/nunitosans-extrabold.ttf') format('truetype');
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  font-family: 'Nunito Sans', Helvetica, Arial, sans-serif; 
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Nunito Sans', Helvetica, Arial, sans-serif; 
  font-size: 1rem;
  line-height: 140%;
  color: #333;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
}

h1 {
  font-size: 1.6rem;
  font-family: inherit;
  line-height: 110%;
  font-weight: 200;
  color: #658ebc;
  margin: 0;
  padding: 2rem 0 0.25rem 0;
  text-transform: uppercase;
}

h2 {
  font-size: 1.6rem;
  font-family: inherit;
  line-height: 110%;
  font-weight: 200;
  color: #658ebc;
  margin: 0;
  padding: 2rem 0 0.25rem 0;
  text-transform: uppercase; 
}

h3 {
  font-size: 1.2rem;
  font-family: inherit;
  line-height: 115%;
  font-weight: 800;
  color: #777777;
  margin: 0;
  padding: 1rem 0 1rem 0;  
}

h4 {
  font-size: 1.1rem;
  font-family: inherit;
  line-height: 115%;
  font-weight: 800;
  color: #777777;
  margin: 0;
  padding: 0.8rem 0 0.5rem 0;    
}

.maintenance {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 10%;
  padding: 1rem;
}

/* Screens */
@media only screen and (min-width: 768px){
  html {
	font-size:17px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.5rem; 
}

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.2rem;   
  }
}
  
@media only screen and (min-width: 992px){
  html {
	font-size:18px;
  }
}  
  
@media only screen and (min-width: 1200px){
  html {
	font-size:18px;
  } 
} 