a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: initial;
}

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:after, blockquote:before, q:after, q:before {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 400;
  src: url(fonts/IBMPlexSans-Regular.ttf) format("truetype");
}

@font-face {
  font-family: IBM Plex Sans;
  font-style: italic;
  font-weight: 400;
  src: url(fonts/IBMPlexSans-Italic.ttf) format("truetype");
}

@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 700;
  src: url(fonts/IBMPlexSans-Bold.ttf) format("truetype");
}

@font-face {
  font-family: IBM Plex Sans;
  font-style: italic;
  font-weight: 700;
  src: url(fonts/IBMPlexSans-BoldItalic.ttf) format("truetype");
}

@font-face {
  font-family: IBM Plex Sans;
  font-style: normal;
  font-weight: 500;
  src: url(fonts/IBMPlexSans-Medium.ttf) format("truetype");
}

@font-face {
  font-family: IBM Plex Sans;
  font-style: italic;
  font-weight: 500;
  src: url(fonts/IBMPlexSans-MediumItalic.ttf) format("truetype");
}

* {
  box-sizing: border-box;
}

body {
  font-family: IBM Plex Sans, sans-serif;
}

body, html {
  height: 100%;
}

a {
  text-decoration: none;
}

a, a:visited {
  color: inherit;
}

#root, .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card {
  background: linear-gradient(to bottom right, #020202, #171717);
  box-shadow: 0 35px 70px 0 rgba(255, 163, 125, 0.65), 0 30px 40px -10px rgba(255, 100, 124, 0.55);
  margin: auto;
  min-height: 512px;
  width: 100%;
}

.header li {
  font-size: 35px;
  list-style: none;
  margin: 0 8px;
}

@media screen and (max-width: 512px) {
  .card {
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    width: 100%;
  }
}

.header {
  margin-top: 24px;
  align-items: center;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 24px 48px;
}

.header > div {
  display: flex;
}

.header > div:nth-child(2) {
  justify-content: center;
}

.avatar {
  height: 96px;
  width: 96px;
}

.avatar:hover {
  opacity: 0.75;
}

.social {
  display: flex;
}

.social a {
  display: inline-block;
  margin-right: 12px;
  transition: opacity 0.05s ease;
}

.social a:last-child {
  margin-right: 0;
}

.social a:hover {
  opacity: 0.75;
}

.social .icon {
  fill: #fff;
  width: 18px;
}

.content {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  min-height: 256px;
}

.content .title-holder {
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.content .title-holder h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.content .title-holder p {
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

@media screen and (max-width: 768px) {
  .content .title-holder {
    max-width: 80%;
  }
}

.content .cta {
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  min-width: 64px;
  padding: 16px 24px;
  text-align: center;
  -webkit-transform: none;
  transform: none;
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.25, 0.315, 1.35), transform 0.1s linear, -webkit-transform 0.1s linear;
}

.content .cta:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.footer {
  color: #fff;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  padding: 48px;
  text-align: center;
}

a.underlined:hover {
  border-bottom: 1px dotted #fff;
}