/* 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('page_background.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-size: 100% 100%;
  color: black;
  font-family: "Lucida Console";
}
h1 {
  font-family: "Lucida Handwriting";
  margin-top: 5px;
  margin-bottom: 5px;
  color: rgba(69, 26, 4, 1);
  font-size: 2rem;
}

.home {
  margin-top: 5px;
  margin-bottom: 0px;
  transition: transform .3s ease-in-out;
  }
.home:hover {
  transform: rotate(20deg);
}
  
.textbox {
  background: rgba(225, 255, 225, 0.70);
  width: auto;
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 25px;
  text-align: center;
  border: solid;
  border-color:rgba(69, 26, 4, 1);
  border-width: 1px;
}
.headerImage {
  background-image: url('headerimage.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-size: 100% ;
  height: 100px;
  width: auto;
  margin-right: 20%;
  margin-left: 20%;
  padding: 50px;
  border: ridge;
  border-color:rgba(69, 26, 4, 1);
  border-width: 5px;
 
}


/*Title section */
.title {
  display: flex;
}
/*image on the header */
.pfpImage {
  margin-left: 20%;
  display: flex;
  justify-content: center;
  width: 15%;
  }
.textboxHeader {
  background: rgba(225, 255, 225, 0.70);
  width: auto;
  margin-right: 20%;
  text-align: left;
  padding: 10px;
  border: solid;
  border-color:rgba(69, 26, 4, 1);
  border-width: 1px;
  flex: 1;
} /* this is the standard background behind text*/

/*edits the shelf and the positioning of the objects on it */
.shelf{
    position: relative;  
  }

.onShelf1 {
    position: absolute;
    top:12%;
    left:15%;
    transition: transform .3s ease-in-out;
}
.onShelf1:hover {
  transform: rotate(20deg);
}
.onShelf2 {
    position: absolute;
    top:12%;
    left:23%;
    transition: transform .3s ease-in-out;
}
.onShelf2:hover {
  transform: rotate(-20deg);
}
.onShelf3 {
    position: absolute;
    top:5%;
    left:35%;
    transition: transform .3s ease-in-out;
}
.onShelf3:hover {
  transform: rotate(20deg);
}
.onShelf4 {
    position: absolute;
    top:10%;
    left:44%;
    transition: transform .3s ease-in-out;
}
.onShelf4:hover {
  transform: rotate(-20deg);
}
.onShelf5 {
    position: absolute;
    top:2%;
    left:58%;
    transition: transform .3s ease-in-out;
}
.onShelf5:hover {
  transform: rotate(20deg);
}
.onShelf6 {
    position: absolute;
    top:2%;
    left:66%;
    transition: transform .3s ease-in-out;
}
.onShelf6:hover {
  transform: rotate(-20deg);
}


/*Intro section */
.container {
  display: flex;
}
/*image on the header */
.intro {
  padding: 10px;
  background: rgba(225, 255, 225, 0.70);
  text-align: left;
  margin-left: 20%;
  margin-right: 20px;
  border: solid;
  border-color:rgba(69, 26, 4, 1);
  border-width: 1px;
  flex: .7;
  
  }
.smt {
  background: rgba(225, 255, 225, 0.70);
  margin-right: 20%;
  text-align: left;
  padding: 10px;
  border: solid;
  width: 15px;
  border-color:rgba(69, 26, 4, 1);
  border-width: 1px;
  flex: .3;
}

