* {
  box-sizing: border-box;
  transition-property: background-color, color, opacity, left;
  transition-duration: 0.2s, 0.2s, 0.2s, 0.4s;
  transition-timing-function: linear, linear, linear, ease-in-out; }

html, body {
  width: 100%;
  height: 100%;  }

body { 
  overflow-x: hidden;
  font-family: 'Noto Sans', sans-serif;
 }

article#mainn {
  display: grid;
  grid-template-rows: 15% 40% 45%;
  grid-template-areas:
  "upper"
  "middle"
  "lower";
  width: 100vw;
  height: 100%;
  /* 100vh doesn't take URL bar into consideration */
  background-color: #547039;
  border-radius: 15px;
  }
  @media screen and (orientation: portrait) {
    article#mainn {
      grid-template-rows: 10% 30% 60%; } }
 
 

/*# sourceMappingURL=style.css.map */
