/* Override */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("font/Roboto-Regular.ttf");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: bold;
  font-display: swap;
  src: url("font/Roboto-Medium.ttf");
}

@font-face {
  font-family: "RazerBlackwidow-Regular";
  font-display: swap;
  src: url("font/RazerBlackwidow-Regular.ttf");
}

html {
  font-family: "Roboto", sans-serif;
}

header {
  position: relative;
  min-height: calc(100vh - 95px);

  background-color: #44d62c;
}

mark {
  color: #44d62c;
  background-color: inherit;
}

/* Content Arrow */
header::after {
  content: "";
  width: 60px;
  height: 60px;

  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);

  background-color: #222222;
}

nav {
  display: flex;

  margin: 0 auto;
  width: 100%;
  max-width: 920px;
}

nav img {
  margin: 25px 0px;
  max-height: 90px;
  height: 100%;
  max-width: 100%;

  margin-right: auto;
}

.nav-link {
  color: #000;
  font-size: 22px;
  font-weight: normal;
  font-style: normal;

  margin: auto 32px;
}

.nav-link:last-child {
  margin-right: 0;
}

.nav-link:hover {
  border-bottom-style: solid;
  border-width: 2px;
  border-color: #222222;
}

body {
  background-color: #222222;
  padding: 0;
  margin: 0;
}

p {
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
}

h1 {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  font-style: normal;

  padding: 0;
  margin: 0;
}

.h-deco {
  height: 4px;
  width: 100px;
  margin-top: 16px;
  margin-bottom: 64px;

  background-color: #fff;
}

h2 {
  color: #44d62c;
  font-size: 22px;
  font-weight: bold;
  font-style: normal;

  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Custom */
.hero,
.hero-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  margin: 0 auto;
  width: 100%;
  max-width: 920px;

  pointer-events: none;
}

.hero img,
.hero-shadow img {
  position: relative;
  margin: auto 0;
}

.hero img:nth-child(1) {
  margin-right: auto;

  animation: levitate 2s ease-in-out infinite;
}

.hero img:nth-child(2) {
  animation: levitate 2s 0.5s ease-in-out infinite;
}

.hero-shadow img:nth-child(1) {
  margin-right: auto;
  animation: levitate-shadow 2s ease-in-out infinite;
}

.hero-shadow img:nth-child(2) {
  animation: levitate-shadow 2s 0.5s ease-in-out infinite;
}

.hero-shadow img {
  top: 100px;
  opacity: 0.1;
}

@keyframes levitate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes levitate-shadow {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
    transform: scale(1.01);
  }
  100% {
    opacity: 0.1;
  }
}

.content {
  display: flex;
  flex-direction: column;
}

article {
  margin: 0 auto 128px auto;

  width: 100%;
  max-width: 920px;
}

.space-32 {
  height: 64px;
}

.space-64 {
  height: 64px;
}

.playlist-links {
  display: flex;
  font-size: 22px;
  font-weight: bold;
  color: #44d62c;
}

.playlist-links > a {
  margin: auto;
  border-bottom-style: solid;
  border-width: 2px;
  border-color: transparent;
}

.playlist-links > a:hover {
  border-color: #44d62c;
}

footer {
  margin: 0 auto;
  width: 100%;
  max-width: 920px;
  display: flex;

  padding: 64px 0;
}

footer * {
  font-size: 16px;
}

footer a {
  color: #fff;
}

footer > a:nth-child(2) {
  margin-left: 32px;
}

footer p {
  margin-left: auto;
}

footer * {
  margin-top: auto;
  margin-bottom: auto;
}

@media only screen and (max-width: 932px) {
  .hero,
  .hero-shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    max-width: 920px;

    pointer-events: none;
  }

  .hero img:nth-child(1),
  .hero-shadow img:nth-child(1) {
    margin-right: 0;
  }

  .hero img:nth-child(1),
  .hero-shadow img:nth-child(1) {
    margin-top: auto;
    margin-bottom: 0;
  }

  .hero-shadow img,
  .hero img {
    margin: 0;
    margin-bottom: auto;
  }

  nav .nav-link {
    position: absolute;
    margin: 0 32px;

    left: 0;
    bottom: 0;
  }

  nav .nav-link:last-child {
    position: absolute;
    margin: 0 32px;

    right: 0;
    bottom: 0;
    left: unset;
  }

  header {
    padding: 16px;
  }

  .content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .playlist-links {
    font-size: 16px;
    flex-direction: column;
  }
  .playlist-links > * {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  footer {
  }

  footer > a:nth-child(1) {
    margin-left: 16px;
  }

  footer > a:nth-child(2) {
    margin-left: 16px;
  }

  footer > p {
    margin-right: 16px;
  }

  footer * {
    font-size: 12px;
  }
}

/* Image Collage */
.img-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
}

/* Create four equal columns that sits next to each other */
.img-column {
  flex: 50%;
  max-width: 50%;
  padding: 0 0;
}

.img-column img {
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .img-column {
    flex: 100%;
    max-width: 100%;
  }
}
