h1 {
  text-transform: uppercase;
  margin: auto;
  font-size: 80px;
  color: rgb(231, 27, 38);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin: 0;
  padding-top: 5px;
  padding-bottom: 10px;
  border-radius: 10px;
 background-color: #ffdd40;
  -webkit-text-orientation: upright;
          text-orientation: upright;
}

html {
 font-family: 'Bungee Shade', cursive;
}

body {
  display: grid;
  grid-template-columns: repeat(5, -webkit-min-content);
  grid-template-columns: repeat(5, min-content);
  gap: 16px;
   -webkit-box-align: start;
           align-items: start;
}

h1:nth-of-type(2n+2) {
 color: #ffdd40;
 background-color: rgb(231, 27, 38);
}