
* {
  box-sizing: border-box;
}




#meow {
  display:block;
  border:5px black solid;
  height:50%;
  width:50%;
  margin: 0 auto;
  padding:10px;
}

#bark {
  display:inline-block;
  border:2px red dashed;
  height:20%;
  width:10%;
  transform:scale(1.2) rotate(5deg) translateY(-13px);
}
.blub {
  position:relative;
  background-color:#333333;
  z-index: 1;
}

.scorpion {
  display: grid;
  grid-gap:10px;
  grid-template:
    "header header"
    "sidebar main"
    "sidebar footer"
    / 100px 1fr;
}

header { 
  grid-area: header;
  border:2px blue dotted;
  }
aside { 
  grid-area: sidebar;
  border:2px blue dotted;
  }
main { 
  grid-area: main;
  border:2px blue dotted;
  height:30px;
  overflow-Y: auto;
  }
footer {
  grid-area: footer;
  border:2px blue dotted;
  }



