body {
  background-color: #030303;
  margin: 0;

  position: absolute;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

p {
  color: white;
  opacity: 20%;
  margin: 0;

  font-family: Martian mono;
  font-size: 2vh;
  font-weight: lighter;
  letter-spacing: -0.14em;
  text-transform: uppercase;

  user-select: none;
}

#text {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.image {
  width: 25vh;

  transition-duration: 0.2s;
}

.image:hover {
  width: 27vh;
  cursor: pointer;
}

.image:active {
  width: 28vh;
  transition-duration: 0.15s;
}
