@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

/* 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;
}
a {
  text-decoration: none;
}
* {
 box-sizing: border-box;
}

:root {
  font-size: 0.875em;
}
@media screen and (min-width: 40em) {
  :root {
    font-size: 1em;
  }
}

/* ------------------ VARIABLES ------------------ */

:root {
  --color--primary: rgba(255,255,255,1);
  --color--secondary: rgba(0,0,0,1);
  --color--text: rgba(170,170,170,1);
  --color--footer: rgba(110,110,110,1);
}

/* ------------------ BODY ------------------ */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.4em;
  overflow-x: hidden;
  width: 100vw;
  background: var(--color--secondary);
  color: var(--color--primary);
}

/* ------------------ CONTAINER ------------------ */

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.logo {
  width: 4rem;
  height: auto;
  margin-bottom: 5rem;
}

.logo svg {
  display: block;
  width: 4rem;
  height: auto;
  fill: var(--color--primary);
}

.logo svg path {
  fill: var(--color--primary);
}

h1 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.1em;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  line-height: 1.2em;
}

p {
  font-size: 1rem;
  color: var(--color--text);
  margin-bottom: 1rem;
  line-height: 1.4em;
}

strong {
  font-weight: 600;
  color: var(--color--primary);
}

.contact {
  margin-top: 2.5rem;
}

.contact p {
  width: 100%;
  margin-bottom: 1rem;
}

a {
  display: block;
  color: var(--color--primary);
  margin-bottom: 0.5rem;
}

a:focus,
a:hover {
  color: var(--color--text);
}

.footer {
  font-size: 0.875rem;
  color: var(--color--footer);
  margin-top: 3rem;
}

@media screen and (min-width: 40em) {
  .container {
    padding: 4rem;
  }
  .contact  {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }
  .contact a:last-child {
    margin-left: 1.5rem;
  }
}
