* {
  cursor: default;
  outline-color: transparent;
}

html {
  min-height: 100vh;
}

html,
body {
  margin: 0;
  overflow: hidden;
  text-transform: uppercase;
}

body {
  background-color: black;
  font-family: "Creepster", system-ui;
  font-size: 3.2vh;
  line-height: 3vh;
}

a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-block;
  text-decoration: none;
  transition: all 150ms ease-in-out;
  white-space: pre;
}

a:link {
  cursor: pointer;
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.2);
}

a:not(:link) {
  cursor: default;
  opacity: 0.35;
}

a:link:hover {
  animation: blink 100ms infinite;
  color: white;
  text-shadow: 3px 3px 1 rgba(0, 0, 0, 0.35);
}

h1 {
  animation: grow 3s ease-in-out;
  color: rgba(255, 255, 255, 0.15);
  font-size: 24vw;
  line-height: 20vw;
  text-align: center;
  user-select: none;
}

h1 span {
  letter-spacing: -0.4vw;
}

footer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.75vh;
  line-height: 2vh;
  padding: 2.5vh 2.5vw;
  position: absolute;
}

li {
  color: rgba(255, 255, 255, 0.5);
}

ul:hover .type {
  transform: scale(1);
}

.type {
  margin-top: -1.5vh;
  transform: scale(0.5);
  transform-origin: 0%;
  transition: all 150ms ease-in-out;
}

#app,
#destru,
#killmails,
#skull {
  opacity: 0;
}

#app {
  transition: opacity 0.25s ease-in-out;
}

#destru {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 2.5s ease-in-out;
}

#killmails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 5vh 2.5vw;
  position: fixed;
  transition: opacity 1s ease-in-out;
  width: 100vw;
  z-index: 2;
}

#skull {
  background-blend-mode: color-burn;
  background-color: #f0f;
  background-image: url("skull.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  position: absolute;
  transition: opacity 5s ease-in-out;
  width: 100%;
}

#skull,
#love,
.type {
  animation: acid 10s infinite;
  color: #f0f;
}

@keyframes acid {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

footer {
  bottom: 0;
  left: 0;
  z-index: 3;
}

.rotate {
  animation: rotate 1s infinite;
  display: inline-block;
  transform-style: preserve-3d;
}

@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@keyframes blink {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

@keyframes grow {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}
