/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/* FONTS */
@font-face {
  font-family: "Jack Armstrong BB";
  src: url("/fonts/JackArmstrongBB.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* DOCUMENT & GLOBALS */
:root {
  --hsl-prime: 14deg, 60%, 50%;
  --clr-prime: hsl(var(--hsl-prime));
  --hsl-prime-bright: 14deg, 60%, 90%;
  --clr-prime-bright: hsl(var(--hsl-prime-bright));
}

html {
  font-family: "Jack Armstrong BB", sans-serif;
  font-size: 62.5%;
  background: hsl(0deg, 0%, 10%);
  background: url('/img/BG01.jpg');
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-position: left bottom;
  color: var(--clr-light);
}

body {
  font-size: 1.6rem;
}

a {
  color: inherit;
}

* {
  box-sizing: border-box;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 80rem;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

/* HEADER */
.header {
  margin: 2rem 0;
  margin-top: 5rem;
  padding: 0;
}
.header__title {
  margin: 0;
  margin-bottom: 1rem;
  color: var(--clr-prime-bright);
  font-size: 6rem;
  text-align: center;
}
.header__subtitle {
  display: flex;
  justify-content: center;
}
.header__subtitle a {
  padding: 0.25rem 1rem;
  padding-bottom: 0.75rem;
  border: 0.2rem solid var(--clr-prime);
  border-radius: 2rem;
  background: hsla(var(--hsl-prime), 0.25);
  color: var(--clr-prime-bright);
  font-size: 2rem;
  text-decoration: none;
}


/* BUTTONS */
.buttons {
  margin: 2rem 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
  width: 25rem;
  padding: 0.75rem;
  overflow: hidden;
  border: 0.2rem solid var(--clr-prime);
  border-radius: 2.5rem;
  background: hsla(var(--hsl-prime), 0.25);
  color: var(--clr-prime-bright);
  text-decoration: none;
  transition: transform 150ms ease-out;
}
.button.button--e621 {
  border-color: hsl(208, 100%, 31%);
  background: hsla(208, 100%, 31%, 0.25);
  color: #fff;
}
.button.button--furaffinity {
  border-color: hsl(0, 0%, 90%);
  background: hsla(0, 0%, 90%, 0.25);
  color: #fff;
}
.button.button--inkbunny {
  border-color: hsl(328, 79%, 89%);
  background: hsla(328, 79%, 89%, 0.25);
  color: #fff;
}
.button.button--inkbunny img {
  margin-top: 1rem;
}
.button.button--twitter {
  border-color: hsl(198, 75%, 52%);
  background: hsla(198, 75%, 52%,0.25);
  color: #fff;
}
.button img {
  position: absolute;
  left: 1rem;
  width: 3rem;
}
.button p {
  margin-top: 1.5rem;
  font-size: 2rem;
}
.button:hover {
  transform: scale(1.1);
}
.button + .button {
  margin-top: 2rem;
}

/* FOOTER */
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin: 2rem 1rem;
  padding: 2rem;
  padding-top: 0;
  border: 0.2rem solid var(--clr-prime);
  background: hsla(var(--hsl-prime), 0.25);
  border-radius: 1rem;
  color: var(--clr-prime-bright);
  line-height: 150%;
}
.footer p {
  margin: 0;
}

/* BRANDING */
.branding {
  text-align: center;
  opacity: 0.75;
}

/* MEDIA QUERIES */
@media (max-width: 575.98px) {
  .social-links {
    justify-content: center;
  }
  .header .header__title {
    font-size: 4.5rem;
  }
}
