@charset "UTF-8";
/* CSS Document */
html {
  background-color: #000;
  font-family: "Impact, fantasy";
  color: antiquewhite;
}

h1 {
  font-size: 80px;
  margin: 0;
  writing-mode: vertical-lr;
  text-align: center;
  line-height: .9;
}

.rotation {
   transform: rotate(180deg);
}

div {
  display: grid;
  height: 100vh;
  justify-content: center;
  align-content: center;
  grid-template-columns: max-content max-content;
}

body {
  margin: 0;
}