* {
   margin: 0;
   padding: 0;
   font-family: monospace;
}

.container {
   width: 100%;
   height: 100vh;
   text-align: center;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

h1 {
   font-size: 128px;
   color: #ff3030;
   margin: 0;
}

p {
   font-size: 24px;
   color: #d6d6d6;
}

@media screen and (max-width: 550px) {
   h1 {
      font-size: 96px;
   }

   p {
      font-size: 16px;
   }
}