/* import adobe font 'owners' */
@import url("https://use.typekit.net/ugo5yiu.css");

/*
max-width breakpoints
xl - @media only screen and (max-width: 1199.98px) {}
lg - @media only screen and (max-width: 991.98px) {}
md - @media only screen and (max-width: 767.98px) {}
sm - @media only screen and (max-width: 575.98px) {}

min-width breakpoints
xl - @media only screen and (min-width: 1200px) {}
lg - @media only screen and (min-width: 992px) {}
md - @media only screen and (min-width: 768px) {}
sm - @media only screen and (min-width: 576px) {}
*/

html {
	color: #ffffff;
	font-size: 16px;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

body {
	background-color: #000000;
	font-family: 'owners', sans-serif;
	margin: 0;
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
	padding-left: 2rem;
	padding-right: 2rem;
}
@media only screen and (min-width: 576px) {
	h1 { font-size: 4rem; }
}
@media only screen and (min-width: 768px) {
	h1 { font-size: 5.5rem; }
}
@media only screen and (min-width: 1200px) {
	h1 { font-size: 7rem; }
}



/**********************/
/*   Helper Classes   */
/**********************/

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}
