/* Reset */

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

/* End Reset */

@font-face {
  font-family: "Helvetica-Neue";
  src: url("helvetica-neue-medium.woff2") format("woff2"),
    url("helvetica-neue-medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

html {
  font-family: "Helvetica-Neue", Arial, sans-serif;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background: #141414;
  background: linear-gradient(to right, #000000 0, #292929 100%);
  color: #eee;
  line-height: 1.6;
  font-size: 1rem;
}

@media (min-width: 768px) {
  body {
    font-size: 1.215rem;
  }
}

.site {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 40px);
  padding: 20px;
}

a,
a:hover,
a:focus,
a:visited {
  color: #eee;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 10px;
}

.site-container {
  max-width: 640px;
}

@media (min-width: 768px) {
  .site-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
  }
}

.site-title {
  text-transform: uppercase;
  margin: 0 0 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 4fr 1fr;
  align-items: end;
  gap: 10px;
}

.trademark {
  justify-self: end;
  content: url("logo.svg");
  display: block;
  width: 100%;
  height: auto;
}
