html {
  font-size: calc(0.85em + 2vw);
}

body {
  display: flex;
  justify-content: center;
  align-items: center;

  background: url(memphis.png) repeat center center;
  min-height: -webkit-fill-available;
  text-align: center;
}

img {
  display: block;
  margin: 0 auto;
}

.container {
  padding: 0 2em;
}

.emoji {
  font-size: 5em;
}

h1 {
  color: #6320ee;
  margin-top: 0.5em;
}

.text {
  display: block;
  color: #191a4b;
  font-size: 0.7em;
  line-height: 1.8;
  margin-top: 1em;
  max-width: 32em;
}

a {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
}

.studio {
  --width: 3em;

  animation: spin 20s linear infinite;
  width: var(--width);

  position: absolute;
  bottom: 2em;
  left: calc(50% - (var(--width) / 2));
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

@media only screen and (max-height: 590px) {
  .studio {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  html {
    font-size: calc(0.85em + 1vw);
  }

  .studio {
    --width: 2em;
  }
}
