/** fonts **/

@font-face {
  font-family: "QuattroSansRegular";
  src: url("assets/QuattroSansRegular.eot");
  src: url("assets/QuattroSansRegular.eot?#iefix") format("embedded-opentype"),
    url("assets/QuattroSansRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "QuattroSansMedium";
  src: url("assets/QuattroSansMedium.eot");
  src: url("assets/QuattroSansMedium.eot?#iefix") format("embedded-opentype"),
    url("assets/QuattroSansMedium.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: "QuattroSansBold";
  src: url("assets/QuattroSansBold.eot");
  src: url("assets/QuattroSansBold.eot?#iefix") format("embedded-opentype"),
    url("assets/QuattroSansBold.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: fallback;
}

/** reset **/

/* prettier-ignore */
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;
}
/* prettier-ignore */
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;
}

/** styles **/

/**
export const FAMILY_REGULAR = "'QuattroSansRegular', Arial, Helvetica, sans-serif";
export const FAMILY_MEDIUM = "'QuattroSansMedium', Arial, Helvetica, sans-serif";
export const FAMILY_BOLD = "'QuattroSansBold', Arial, Helvetica, sans-serif";
**/

html,
body {
  min-height: 100%;
}

body {
  background-color: rgb(31, 1, 47);
  background-image: radial-gradient(#58213e, rgb(31, 1, 47));
  color: white;
  font-family: "QuattroSansRegular", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

h1 {
  font-family: "QuattroSansBold", Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 22px;
}

a {
  color: white;
}

.container {
  position: relative;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.media {
  width: 100%;
}

.media img {
  width: 100%;
}

.content h1 {
  margin-top: 24px;
}
.content p {
  margin-top: 18px;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 18px;
    line-height: 24px;
  }

  h1 {
    font-size: 30px;
  }

  .container {
    padding: 80px 32px;
    max-width: 1200px;
    flex-direction: row;
  }

  .media picture {
    width: 50%;
  }

  .content {
    margin-left: 32px;
    position: relative;
  }

  .content h1 {
    margin-top: 0;
  }
  .content p {
    margin-top: 24px;
  }
}
