/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  width:100px;
  height: 100px;
  }

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  color: #fff;
  text-align: center;
  padding: 50px;
  font-size: 30px;
  text-shadow: 2px 2px black;
  line-height: 1.6;
 
  /* Position of tooltip text */
  position: fixed;
  z-index: 1;
  top: 400px;
  left: 650px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}


/*     ^^^this is the "tool-tip" code^^^     */



header {
  box-sizing: border-box;
  border: 7px solid white;
  position: center;
  width: 900px;
  margin: 10px 10%;
}

body {
  background-image: url(img/blackbirdcomp.png), url(img/clouds.png);
  background-position: 1200px 170px, 0px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 750px, cover;
  width:1000px;
}

h3 {
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: 50px;
  width: 50px;
  margin-left: 20px;
  color: white;
  text-shadow: 2px 2px RGBA(0,0,0,0.8);
}
h1, h2 {
  color: white;
  text-align: center;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  padding-top: 3px;
}


h1{
  font-size: 70px;
  text-shadow: 2px 2px RGBA(0,0,0,0.5);
}

#poem {
  background-image: url(img/texture1.png);
  width: 450px;
  height: 550px;
  border-radius: 10px;
  margin-top:80px;
  margin-bottom: 600px;
  margin-left: 100px;
}

#label {
  padding-top: 25px;
  font-style: italic;
  text-align: center;
  font-size: 20px;
  color: white;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  text-decoration: underline;

}

figure {
  float: left;
}

aside {
  width: 1200px;
  background: RGBA(255,255,255,0.75);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  height: 470px;
}

#bio {
  padding: 15px;
}

footer {
  padding: 15px;
}

a:link, a:visited {
  color: black;
}

.black {
  color: black;
}