@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Space+Mono:wght@700&display=swap');

body {
  font-family: 'Space Mono', serif;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(90deg, #1cb5e0 0%, #000851 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.text {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f5f5;
  display: flex;
  overflow: hidden;
  perspective: 1000px;
  padding: 0 1rem 0 1rem;

  span {
    display: inline-block;
    transform-origin: center center;
    font-size: 8rem;
    color: #333;
    text-shadow: 0px 8px 5px rgba(0, 0, 0, 0.7);
    letter-spacing: 4px;
  }
}
