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

/* Styles */

body {
  background: #000000;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  margin: 0;
}

.container {
  display: grid;
  grid-auto-flow: row;
  justify-content: center;
  justify-items: center;
  position: relative;

  grid-template-rows: 38% auto minmax(0, 1fr);
  min-height: 100%;
  padding-top: 30px;
}

.title {
}

.title > svg {
  width: 902px;
  height: 202px;
}

.logo-container {
  display: grid;
  width: 364px;
  height: 210px;

  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-bg {
  position: absolute;
  inset: 0;
}

.logo {
  position: relative;
}
.logo > svg {
  width: 206px;
  height: 55px;
}

h1 {
  display: none;
}

.bg {
  position: fixed;
  inset: 0;

  background-image: url("/grid-pattern.png");
  background-position-y: 8px;
  background-size: 11px;
  opacity: 0.05;
}

.bg-bottom {
  position: fixed;
  inset: 0;
  top: auto;
}

.bg-bottom-mobile {
  position: fixed;
  inset: 0;
  top: auto;
  display: none;
}

.follow-container {
  margin-top: 40px;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  align-content: start;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.follow__links {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 12px;
}

.follow__link {
  display: grid;
  font-size: 0;
}

@media (max-width: 768px) {
  .logo > svg {
    width: 163px;
    height: 42px;
  }

  .title > svg {
    width: 361px;
    height: 82px;
  }

  .bg-bottom-mobile {
    display: block;
  }

  .bg-bottom {
    display: none;
  }
}
