/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ---------------------- */

@font-face {
  font-family: Parisish;
  src: url(../fonts/Parisish-EEoW.ttf);
}

h1 {
  font-family: 'Abril Fatface', sans-serif;
  font-size: 40pt;
}

h2 {
  font-family: Parisish, 'Pompiere', sans-serif;
  font-size: 14pt;
}

h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 16pt;
}

h4 {
  font-family: 'Archivo', sans-serif;
  margin-bottom: 1rem;
}

h5 {
  font-family: Parisish, 'Pompiere', sans-serif;
  font-size: 14pt;
}

p {
  font-family: 'Archivo', sans-serif;
  font-size: 11pt;
  margin-bottom: 1rem;
  line-height: 1.2;
}

img {
  width: 80vw;
  max-width: 100%;
}

footer {
  margin: 15px 10% 15px 10%;
  text-align: center;
}

strong {
  font-weight: bold;
}

small {
  font-size: 4vw;
}

.title-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 10pt;
  margin: 10px 10% 10px 10%;
}

.img-splash {
  position: relative;
  text-align: center;
  color: #001a5d;
}

.img-splash h2 {
  margin-top: 2.2vw;
  font-size: 5.2vw;
  text-align: right;
}

.nav-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  font-weight: 700;
  font-size: 20pt;

  margin: 10px 0 10px 0;
}

.nav-text h3 {
  margin: 5px 0 5px 0;

}

.body-text {
  margin: 10px 10% 10px 10%;
}

.centered {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-wrap: nowrap;
}

.divider {
  display: none;
}

/* TABLET LAYOUT */

@media only screen and (min-width: 768px) {
  h2 {
    font-size: 18pt;
  }

  h3 {
    font-size: 2vw;
  }

  .divider {
    display: flex;
  }

  .nav-text {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  
    font-weight: 700;
    font-size: 2.4vw;
  
    margin: 10px 10% 10px 10%;
  }
}

/* DESKTOP LAYOUT */

@media only screen and (min-width: 1500px) {
  .nav-text {
    font-size: 28pt;
    margin: 10px 0 10px 0;
  }

  img {
    max-width: 1200px;
  }

  h2 {
    font-size: 22pt;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 16pt;
  }

  p {
    font-size: 11.4pt;
  }

  body {
    max-width: 1200px;
    margin: auto;
  }
  
  footer {
    margin: 15px 0 15px 0;
  }

  small {
    font-size: 60px;
  }

  .img-splash h2 {
    font-size: 79px;
    margin-top: 33px;
  }  

  .title-text {
    margin: 10px 0 10px 0;
  }

  .body-text {
    margin: 10px 0 10px 0;
  }

}