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

:root {
  --container-width: 80%;

  --background: #ddd;
  --primary: #ddd;
  --primary-bg: #282828;

  --highlight: #acacac;

  --font-primary: "Roboto Flex", sans-serif;
}

body {
  font-family: var(--font-primary);
  font-optical-sizing: auto;
  font-weight: 300;
  background-color: var(--background);
}

::selection {
  background-color: #03f69f;
  color: #282828;
  border-radius: 4px;
}

p {
  margin: 0 0 20px 0;
}

.wrapper {
  max-width: var(--container-width);
  transform: scalex(0.01);
  opacity: 0;
  margin: 5% auto 1%;
  color: var(--primary);
  background-color: rgba(15, 15, 15, 0.9);
  border-radius: 8px;
  animation: grow 0.5s cubic-bezier(0.78, 0, 0.22, 1) 0.5s forwards;
  transform-origin: left;
}

.wrapper h1 {
  font-size: 56px;
  font-weight: 400;
  margin: 4px 0 64px -1px;
  color: var(--primary);
  text-align: center;
  opacity: 0;
  animation: fadein 0.5s ease-in-out 1s forwards;
}

@keyframes grow {
  0% {
    transform: scalex(0.01);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scalex(1);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}

.coffee {
  width: 16px;
  height: 16px;
  margin: 0 auto 80px;
  display: block;
}

.wrapper .content {
  margin: 0 auto;
  max-width: 580px;
  padding: 96px 0;
}

.intro {
  line-height: 1.8em;
  position: relative;
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 64px 0;
  text-align: justify;
  z-index: 2;
  letter-spacing: 0.2px;
}

.intro p:first-child {
  opacity: 0;
  animation: fadein 0.5s ease-in-out 1.2s forwards;
}

.intro p:nth-child(2) {
  opacity: 0;
  animation: fadein 0.5s ease-in-out 1.4s forwards;
}

.intro p:nth-child(3) {
  opacity: 0;
  animation: fadein 0.5s ease-in-out 1.6s forwards;
}

.intro p:nth-child(4) {
  opacity: 0;
  animation: fadein 0.5s ease-in-out 1.8s forwards;

  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.links {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  animation: fadein 0.5s ease-in-out 2s forwards;
}

.links .link a {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 500;
  position: relative;
}

.links .link a:after {
  position: absolute;
  bottom: -4px;
}

a {
  display: inline-block;
  color: var(--highlight);
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--highlight);
  transition: all ease-in-out 0.3s;
}

a:hover {
  color: #eee;
}

a:hover:after {
  width: 100%;
}

a:active {
  transform: scale(0.96);
}

.background {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 480px;
  top: 0;
  left: 0;
  display: flex;
  flex-grow: 1;
  z-index: 1;
  pointer-events: none;
}

.background div {
  position: absolute;
  border-radius: 100%;
  height: 0;
  filter: blur(96px);
  pointer-events: none;
}

.background div:nth-child(1) {
  width: 50%;
  height: 880px;
  left: 0;
  top: 40%;
  transform: translateX(-20%) translateY(-100%);

  background: linear-gradient(132deg, #46ff4e 0%, #46ff4e 100%);

  --inop: 0.16;
  opacity: var(--inop);

  animation: first-fade 8s linear infinite 1s;
}

.background div:nth-child(3) {
  width: 64%;
  height: 480px;
  left: 50%;
  top: 25%;
  transform: translateX(-50%) translateY(-60%);
  background: linear-gradient(132deg, #81f7ff 0%, #81f7ff 100%);

  --inop: 0.16;
  opacity: var(--inop);

  animation: second-fade 8s linear infinite 1.2s;
}

.background div:nth-child(2) {
  width: 40%;
  height: 880px;
  right: 0;
  top: -35%;
  transform: translateX(20%) translateY(-60%);

  background: linear-gradient(132deg, #03f69f 0%, #03f69f 100%);

  --inop: 0.14;
  opacity: var(--inop);

  animation: third-fade 8s linear infinite 1.4s;
}

@keyframes first-fade {
  0% {
    opacity: var(--inop);
    filter: blur(96px) contrast(100%) saturate(100%);
  }

  30% {
    opacity: 0.02;
    filter: blur(96px) contrast(200%) saturate(240%);
  }

  70% {
    opacity: 0.02;
    filter: blur(96px) contrast(200%) saturate(240%);
  }

  100% {
    opacity: var(--inop);
    filter: blur(96px) contrast(100%) saturate(100%);
  }
}

@keyframes second-fade {
  0% {
    opacity: var(--inop);
  }

  30% {
    opacity: 0.04;
  }

  70% {
    opacity: 0.04;
  }

  100% {
    opacity: var(--inop);
  }
}

@keyframes third-fade {
  0% {
    opacity: var(--inop);
    filter: blur(96px) contrast(100%) saturate(100%);
  }

  30% {
    opacity: 0.06;
    filter: blur(96px) contrast(200%) saturate(240%);
  }

  70% {
    opacity: 0.06;
    filter: blur(96px) contrast(200%) saturate(240%);
  }

  100% {
    opacity: var(--inop);
    filter: blur(96px) contrast(100%) saturate(100%);
  }
}

@media screen and (max-width: 460px) {
  .links {
    display: block;
    text-align: center;
  }

  .links .link {
    margin: 0 0 28px 0;
  }

  .wrapper .intro {
    text-align: left;
  }
}

@media screen and (max-width: 860px) {
  :root {
    --container-width: 90%;
  }
  .wrapper {
    font-size: 14px;
    margin: 20% auto 8%;
  }

  .wrapper .content {
    max-width: 84%;
  }

  .wrapper h1 {
    font-size: 28px;
  }
}

@media screen and (min-width: 1900px) {
  :root {
    --container-width: 70%;
  }
}
