/**
 * @file
 * base.css
 * 
 * The basic styles
 * 
 * -------------------------------------------------
 * Attached thru `.libraries.yml`
 *
 =========================================================================== */

/**
 * Global
 ========================================*/

*, :before, :after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * Elements
 ========================================*/

/**
 *  Form Elements
 *----------------------------*/

/**
 * Misc 
 *----------------------------*/

/* Lists
----------------*/
ol, ul {
  margin: 0 0 1em 1em;
}

/* Paragraphs
----------------*/
p {  margin: 0 0 1em;  }


/* Images
----------------*/
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border: 0;
}


/**
 * Meyer's Reset (with modifications)
 ============================================================================ */

main, details, .display-block, /* Modification */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/**
 * normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css 
 ============================================================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

 button,
 input,
 optgroup,
 select,
 textarea {
   font-family: inherit; /* 1 */
   font-size: 100%; /* 1 */
   line-height: 1.15; /* 1 */
   margin: 0; /* 2 */
 }