*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  height: 100%;
}

body {
  background: #181818;
  font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  min-height: 100%;
}

.main-content {
  padding: 50px;
}

ul {
  list-style: none;
  text-align: center;
  margin-bottom: 60px;
}
ul li {
  margin-bottom: 5px;
}
ul li:last-child {
  margin-bottom: 0;
}
ul:last-of-type {
  margin-bottom: 0;
}

h1 {
  font-size: 26px;
  font-weight: 600;
  color: #000;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  margin-right: 18px;
  position: relative;
}
h1:after {
  content: "";
  position: absolute;
  right: -18px;
  top: 0;
  width: 15px;
  height: 30px;
  background: #000;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  animation: blink 0.5s infinite alternate;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0px 3px 5px #000;
}

a {
  display: inline-block;
  font-size: 16px;
  padding: 12px;
  text-decoration: none;
}
a.lastfm {
  color: #D51007;
}
a.lastfm:hover {
  background: #D51007;
  color: #fff;
  text-shadow: 0 1px 0 #000;
}
a.discogs {
  color: #fff;
}
a.discogs:hover {
  background: #31312f;
  color: #fff;
}
a.discogs:hover .o {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 1px;
  color: transparent;
  position: relative;
}
a.discogs:hover .o::after {
  position: absolute;
  content: "";
  left: 0;
  top: 3px;
  height: 100%;
  width: 100%;
  background: url(../img/discogs-record-icon.png);
  background-size: cover;
}
a.letterboxd {
  background: linear-gradient(105deg, #FF8000 0%, #80B02A 50%, #40BCF4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
a.letterboxd:hover {
  color: #fff;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #fff;
  background-clip: initial;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
a.goodreads {
  color: #E9E5CD;
}
a.goodreads:hover {
  background: #E9E5CD;
  color: #75420e;
}
a.mayqueen {
  background: url(../img/giphy.gif);
  background-size: cover;
  background-position: 50% bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
a.mayqueen:hover {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #fff;
  background-clip: initial;
}
a.pikacssu {
  color: #F6D63F;
}
a.pikacssu:hover {
  color: #fff;
  background: url(../img/tenor.gif);
  background-size: cover;
  background-position: 50% bottom;
  text-shadow: 0px 3px 5px #000;
}

.me {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.me span {
  font-size: 12px;
  color: #fff;
  text-shadow: 0px 3px 5px #000;
  opacity: 0;
  position: absolute;
}
.me span.left {
  translate: -44px 0;
  transition: opacity 250ms ease-out, translate 500ms ease-out;
}
.me span.right {
  translate: 75px 0;
  transition: opacity 250ms 500ms ease-out, translate 500ms 500ms ease-out;
}
.me img {
  box-shadow: 0 10px 30px rgba(255, 161, 164, 0.2);
  overflow: hidden;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: box-shadow 250ms ease-out;
}
.me:hover span {
  opacity: 1;
}
.me:hover span.left {
  translate: -54px 0;
}
.me:hover span.right {
  translate: 85px 0;
}
.me:hover img {
  box-shadow: 0 16px 50px 5px rgba(255, 161, 164, 0.2);
}

.namebox-card-container {
  position: relative;
  width: 290px;
  margin-bottom: 100px;
}

.namebox-card-container > .namebox-card {
  width: 100%;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
  transform-origin: 50%;
  transition: transform 150ms ease-out, box-shadow 250ms ease-out;
  transform-style: preserve-3d;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .namebox-card-container > .namebox-card {
    transition: none;
  }
}
.namebox-card-container > .namebox-card.hover,
.namebox-card-container > .namebox-card:focus-within {
  box-shadow: 0 16px 50px 5px rgba(255, 0, 0, 0.2);
  outline: none;
  transform: translateZ(4rem);
}

.namebox-card-container > .namebox-card > .content {
  display: block !important;
  width: 100%;
  border: none;
  outline: none;
  background: #FF0000;
  padding: 50px;
  z-index: 1;
  position: relative !important;
}

.namebox-card-container > .namebox-card > .content * {
  pointer-events: none;
}

.namebox-card-container > .namebox-card > .parallax-content {
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: transform 150ms ease-out;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .namebox-card-container > .namebox-card > .parallax-content {
    transition: none;
  }
}/*# sourceMappingURL=main.css.map */