:root {
  font-family: 'Roboto Flex', sans-serif;
}

body {
  background-color: black; 
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: left;
  height: 100vh;
  margin: 0;
}

.retro-text {
  font-size: 500px;
  font-weight: 700;
  color: white;
}

.layer1 {
  color: white;
  display: inline-block;
  animation: slideIn 2s ease-out forwards; 
}

@keyframes slideIn {
  0% {
    transform: translateX(-100vh);}
  100% {
    transform: translateX(-15px);}
}