@import url(https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&family=Sacramento);
:root {
  --gradient-1: #945e8aff;
  --gradient-2: #956b92ff;
  --gradient-3: #7a6f9bff;
  --gradient-4: #8b85c1ff;
  --gradient-5: #d4cdf4ff;
}

/* SCSS Gradients */
@-webkit-keyframes colorChange {
  from {
    background-size: 100% 100%;
  }
  to {
    background-size: 120% 120%;
  }
}
@keyframes colorChange {
  from {
    background-size: 100% 100%;
  }
  to {
    background-size: 120% 120%;
  }
}
@-webkit-keyframes backgroundWobble {
  from {
    background-position: 0% 100%;
  }
  to {
    background-position: 100% 0%;
  }
}
@keyframes backgroundWobble {
  from {
    background-position: 0% 100%;
  }
  to {
    background-position: 100% 0%;
  }
}
@-webkit-keyframes rainbowColor {
  16% {
    color: #945e8a;
  }
  32% {
    color: #956b92;
  }
  48% {
    color: #7a6f9b;
  }
  64% {
    color: #8b85c1;
  }
  80% {
    color: #d4cdf4;
  }
}
@keyframes rainbowColor {
  16% {
    color: #945e8a;
  }
  32% {
    color: #956b92;
  }
  48% {
    color: #7a6f9b;
  }
  64% {
    color: #8b85c1;
  }
  80% {
    color: #d4cdf4;
  }
}
* {
  font-family: "Raleway", sans-serif;
}

.header__inner {
  margin-left: 20px;
  margin-right: 20px;
  transition: margin-left 0.5s ease-in-out, margin-right 0.5s ease-in-out;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  height: 80px;
}
@media (max-width: 768px) {
  .header__inner {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.header__inner .site-title {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  position: relative;
  flex: 1 0 auto;
  transition: align-items 0.5s ease-in-out;
}
.header__inner .site-title > span,
.header__inner .site-title > a {
  position: absolute;
  bottom: -32px;
  left: 0;
  font-family: "Sacramento", cursive;
  font-size: 64px;
  font-weight: 600;
  display: block;
  color: #1C1C1C;
  text-decoration: none;
  transition: left 0.5s ease-in-out, transform 0.5s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header__inner .site-navigation {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  position: relative;
  top: 20px;
}
.header__inner .site-navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.header__inner .site-navigation ul li a {
  color: #1C1C1C;
  text-decoration: none;
  font-weight: 600;
}
.header__inner .site-navigation ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .header__inner .site-title span,
.header__inner .site-title a {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .header__inner {
    height: 50px;
  }
  .header__inner .site-title span,
.header__inner .site-title a {
    font-size: 46px;
    bottom: -24px;
  }
}
@media (max-width: 320px) {
  .header__inner {
    height: 40px;
  }
  .header__inner .site-title span,
.header__inner .site-title a {
    font-size: 36px;
  }
}
* {
  box-sizing: border-box;
  color: #1C1C1C;
}

body {
  position: relative;
  margin: 0;
  height: 100vh;
}
body:after {
  position: absolute;
  top: 0;
  left: 0;
  animation: backgroundWobble 4s ease-in-out infinite alternate-reverse;
  background: linear-gradient(315deg, #945e8a, #956b92, #7a6f9b, #8b85c1, #d4cdf4);
  background-position: 0% 100%;
  background-size: 150% 150%;
  content: "";
  height: 100%;
  width: 100%;
  z-index: 0;
}
body .page-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  position: relative;
  height: 100%;
  z-index: 1;
}
body .page-wrapper .content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  flex: 1 0 auto;
}
body .page-wrapper .content__inner {
  margin-left: 20px;
  margin-right: 20px;
  transition: margin-left 0.5s ease-in-out, margin-right 0.5s ease-in-out;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(28, 28, 28, 0.35);
  color: #F3F3F3;
  flex: 1 0 auto;
  margin-bottom: 20px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  body .page-wrapper .content__inner {
    margin-left: 10px;
    margin-right: 10px;
  }
}
body .page-wrapper .content__inner a {
  color: #1C1C1C;
  text-decoration: underline;
}
body .page-wrapper .content__inner a:hover {
  -webkit-animation: rainbowColor 2s ease-in-out infinite;
          animation: rainbowColor 2s ease-in-out infinite;
}
body .page-wrapper .content__inner pre {
  padding: 0;
  margin: 0;
  white-space: break-spaces;
}
body .page-wrapper .content__inner * {
  color: #F3F3F3;
  padding: 20px;
}

.footer__inner {
  margin-left: 20px;
  margin-right: 20px;
  transition: margin-left 0.5s ease-in-out, margin-right 0.5s ease-in-out;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  height: 30px;
}
@media (max-width: 768px) {
  .footer__inner {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.footer__inner .huh {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
}
.footer__inner .copyright {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
