/* 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%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

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;
}

html, body {
  width: 100%;
  height: 100%;
}

main {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100vh;
  display: grid;
  overflow: hidden;
  grid-template-areas: "title" "hero" "links";
  grid-template-columns: minmax(auto, 600px) auto;
}
@media screen and (min-width: 700px) {
  main {
    grid-template-areas: "title hero" "links hero";
  }
}
main article.title {
  grid-area: title;
  color: black;
  padding: 30px 30px 0 30px;
  overflow: hidden;
}
main article.title img.main-logo {
  max-width: 360px;
  margin-bottom: 20px;
}
main article.title p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 7px;
}
main article.links {
  grid-area: links;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px 0 30px;
}
main article.links a {
  display: flex;
  color: black;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 7px;
}
main article.hero {
  grid-area: hero;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 700px) {
  main article.hero {
    align-items: flex-start;
  }
}
main article.hero img {
  max-width: 100%;
  max-height: calc(100vh - 120px - 250px);
  min-height: 300px;
  min-width: 300px;
}
@media screen and (min-width: 700px) {
  main article.hero img {
    max-height: calc(100vh - 120px);
  }
}

/*# sourceMappingURL=style.css.map */
