/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
  background-image: url(BackgroundTest.png);
  color: black;
  font-family: 'PixeloidMono';
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.container {
  display: grid;
  grid-template-columns: 200px 200px 200px 200px ;
  grid-template-rows: 100px 200px 200px 200px 100px;
  width: 800x;
  max-width: 800px;
  max-height: 800px ;
  border: brown dashed 2px;
  border-radius: 0px;
}

.container div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: sandybrown;
  color: white ;
  font-size: 1rem;
  border: brown dashed 2px;
  padding: 20px;
  border-radius: 0px;
  max-width: 2000px;
  
}

#box-1 {
  position: relative;
  rotate: -2deg;
  transition-property: transform;
  transition-duration: 1s;
  transition-timing-function: ease ;
  transition-delay: 150ms;
  
  background-color: black;
  color: white ;
  font-size: 1rem;
  border: white dashed 0px;
  max-width:50px;
  max-height:50px;
  top: 23px;
  left: 33px;
  z-index: 1;
}

#box-1:hover {
  transform: 
  rotate(5deg)
  scale(1.05);
}
#box-1 img {
  scale: 0.191;
  filter: drop-shadow(10px 10px 0px #000000a8);
}

#box-2 {
  position: relative;
  top: 34px;
  left: -100px;
  right: 0px;
  width: 330%;
  height: 25px;

  border-radius: 1px;
  border: none;

  background-color: rgb(194, 70, 39);
  filter: drop-shadow(2px 2px 0px #000000a8);
  
  z-index: 0;
}

#box-3 {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  z-index: 0;
  
  width: 150px;
  height: 210px;
  position: relative;
  top: 33px;
  left: -17px;
  
  filter: drop-shadow(2px 2px 0px #000000a8);
}

#box-4 {
  grid-row: 2 / 4;
  grid-column: 2 / 4;
  z-index: 0;
}

#box-5 {
  grid-row: 2 / 3;
  grid-column: 4 / 5;
  z-index: 0;
}

#box-6 {
  grid-row: 3 / 4;
  grid-column: 1 / 2;
  z-index: 0;
}

#box-7 {
  grid-row: 3 / 6;
  grid-column: 1 / 3;
  z-index: -1;
}

#box-8 {
  grid-row: 4 / 5;
  grid-column: 3 / 4;
  z-index: 0;
}

#box-9 {
  grid-row: 4 / 5;
  grid-column: 4 / 5;
  z-index: 0;
}

#box-10 {
  grid-row: 3 / 6;
  grid-column: 3 / 5;
  z-index: -1;
}