@import url("https://fonts.googleapis.com/css2?family=Road+Rage&display=swap");

body {
  font-family: "Road Rage", cursive;
  font-weight: 800;
  height: 100vh;
  background: #333
    url("https://media.tenor.com/190VNRXUHXYAAAAC/person-of-interest-poi.gif")
    no-repeat center center / cover;

  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 3rem;
}

h1,
h2 {
  font-weight: 200;
  margin: 0.4rem;
}

h1 {
  font-size: 3.5rem;
  color: #e6eef4;
}

span {
  text-decoration: double;
  color: #ff4141;
  text-transform: uppercase;
}

h2 {
  font-size: 2rem;
  color: #e9e9e9;
}

.name-intro {
  color: #ceebff;
}

/* Cursor */
.txt-type > .txt {
  border-right: 0.25rem solid #ff4141;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 5rem;
  }
}

@media (max-width: 800px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
