/* Основные стили для body */ 
body {
    background-image: url('../img/retrowave-retro-neon-synthwave.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@font-face {
  font-family: 'Code New Roman';
  src: url('../fonts/code-new-roman/code-new-roman.woff') format('woff');
}

* {
  box-sizing: border-box;
  margin: 0;
}

.wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5rem;
}

#text {
  max-width: 800px;
  text-align: center;
  width: 100%;
  color: white;
  font-family: 'Code New Roman', monospace;
  font-size: 1.8rem;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 8rem;
}

#text.typing span:last-child {
  background-color: #32CD32;
}
