* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --dk-gray: #242424;
  --lt-gray: #9a9a9a;
  --green: #00ffae;
  --blue: #0df7ff;
  --white: #f8f8f8;
  --body-copy: "Verdana", sans-serif;
}

@font-face {
  font-family: "aeren";
  src: url(https://cdn.aerentech.com/css/fonts/strasua.ttf) format("truetype");
}

@font-face {
  font-family: "headline";
  src: url(https://cdn.aerentech.com/css/fonts/LEMONMILK-Regular.otf) format("truetype");
}

::-webkit-scrollbar {
  background: #333;
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: #00d18f;
  border: 1px solid #7bdebea4;
  box-shadow: 0 0 10px rgba(154, 203, 229, 0.6);
  border-radius: 6px;
  z-index: 9;
}

::-webkit-scrollbar-thumb:active {
  /* This happens when you're holding down + dragging on the bar */
  background: rgba(0, 168, 106, 0.3);
  box-shadow: 0 0 10px rgba(154, 214, 229, 0.8);
}

body {
  font-family: var(--body-copy);
  background: linear-gradient(90deg, var(--dk-gray), #1a1a1a);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr repeat(6, 1fr) 1fr;
  grid-template-rows: auto;
  width: 100%;
  padding: 2em 0;
}

main {
  grid-column: 2 / -2;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "aeren", sans-serif;
  font-size: 36px;
  color: var(--green);
  margin: 24px 0;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "headline", sans-serif;
  font-size: 28px;
}

h3 {
  font-size: 22px;
  color: var(--blue);
}

h4 {
  font-size: 18px;
}

p {
  font-size: 16px;
}

a {
  color: inherit;
}

/* BUTTON */
.link_wrapper {
  position: relative;
  width: fit-content;
}

.link_wrapper a {
  padding: 12px 16px;
  line-height: 50px;
  font-weight: bold;
  text-decoration: none;
  background: #333;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #333;
  transition: all .35s;
}

.link_wrapper .icon {
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  position: absolute;
  transform: rotate(45deg);
  right: 0;
  top: 0;
  z-index: -1;
  transition: all .35s;
}

.link_wrapper .icon svg {
  width: 30px;
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  transform: rotate(-45deg);
  fill: var(--green);
  transition: all .35s;
}

.link_wrapper a:hover {
  width: 200px;
  border: 3px solid var(--green);
  background: transparent;
  color: var(--green);
}

.link_wrapper a:hover+.icon {
  border: 3px solid var(--green);
  right: -25%;
}

/* BASE CONTAINERS */
.row_container {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.row {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
}
.row img {
  max-width: 30%;
  object-fit: cover;
}
.column_container {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}

pre {
  color: #c5fdff;
  font-size: 16px;
  font-family: monospace;
}