/*
  Coding from Life – Sketch 1: fixed layout

  For sketch 1 you'll be positioning elements relative to an element with a fixed
  width and height. For this sketch you can position elements by using pixel values.
*/

body {
    background-color: black;
}


.header {
    font-family: Roboto Mono;
    color: forestgreen;
    font-size: 30px;
    padding: 18px;
}


.frame {
    width: 1000px;
    height: 600px;
    background: #D2D0C7;
    margin: 30px auto;
    position: relative;
    z-index: 0px;
}

.table {
    width: 1000px;
    height: 220px;
    position: absolute;
    background: gray;
    bottom: 0
}

/* Your CSS goes here */

.book2front {
    width: 400px;
    height: 60px;
    background: #DAC3B5;
    position: absolute;
    left: 310px;
    bottom: 190px;
    z-index: 3;
}

.book2back {
    width: 400px;
    height: 60px;
    background: #BDAF9E;
    position: absolute;
    left: 262.5px;
    bottom: 230px;
    z-index: 2;
}

.book2top {
    width: 400px;
    height: 40px;
    transform: skew(50deg);
    background: #F9F2E6;
    position: absolute;
    left: 286px;
    bottom: 250px;
    z-index: 2;
}

.book2bottom {
    width: 400px;
    height: 40px;
    transform: skew(50deg);
    background: #BDAF9E;
    position: absolute;
    left: 286px;
    bottom: 190px;
    z-index: 2;
}






.book1front {
    width: 500px;
    height: 75px;
    background: #83302B;
    position: absolute;
    left: 250px;
    bottom: 110px;
    z-index: 4;
}



.book1back {
    width: 500px;
    height: 75px;
    background: #A9A195;
    position: absolute;
    left: 190px;
    bottom: 160px;
    z-index: ;
}

.book1top {
    width: 500px;
    height: 50px;
    transform: skew(50deg);
    background: #B6534E;
    position: absolute;
    left: 220px;
    bottom: 185px;
    z-index: 2px;
}



.book1bottom {
    width: 500px;
    height: 50px;
    transform: skew(50deg);
    background: #A9A195;
    position: absolute;
    left: 220px;
    bottom: 110px;
    z-index: 2;
}




.pumpkin1 {
    width: 200px;
    height: 100px;
    background: #E78744;
    border-radius: 100%;
    position: absolute;
    left: 360px;
    bottom: 260px;
    z-index: 2;
}

.pumpkin2 {
    width: 75px;
    height: 12px;
    ;
    background: #AC5C30;
    border-radius: 100%;
    position: absolute;
    left: 422.5px;
    bottom: 345px;
    z-index: 3
}

.stem {
    width: 10px;
    height: 12px;
    transform: skewX(5deg);
    background: #79562B;
    position: absolute;
    left: 455px;
    bottom: 347.5px;
    z-index: 3
}

.footer {
    font-family: Roboto Mono;
    position: fixed;
    padding-left: 18px;
    bottom: 18px;
    width: 100%;
    font-size: 12px;
    color: forestgreen;
}

/*
.lampbase{
  width: 200px;
    height: 75px;
    background: #E78744;
    border-radius: 100%;
    position: absolute;
    left: 660px;
    bottom: 135px;
    z-index: 0;
}
*/

}


}
