html {
  height: 100dvh;
}

body {
  margin: auto;
  height: 100%;
  background-color: #102010;
  background: linear-gradient(45deg, #101000, #102010);
  color: #f0f0e6;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.greet {
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-bottom: 1.5em;
}

.msg {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1;
  color: #d4d4c9;
}

.msg .highlight {
  background-color: #406040;
  background: linear-gradient(270deg, #204020, #406040);
  padding: 0.1em 0.25em;
  border-radius: 0.3em;
  transition: background 1.3s ease-in-out;
}