
body {
  background-color: black;
}

#page-container {
  /*Need a nice background image? www.unsplash.com is a good resource*/ 
 	background-image: url("https://images.unsplash.com/photo-1531306728370-e2ebd9d7bb99?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80"); 
  background-size:100% 100%;
  height: 100vh;
	width: 100vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*Want to move the text box? Change the percentage values of the 'top' and 'left' properties to reposition it*/
#text-box {
  background-color: rgba(255,255,255,0.5);
  margin: 10px;
  padding: 20px;
  position: fixed;
  top: 20%;
  left: 70%;
  transform: translate(-50%, -50%);
  border-radius: 5%;
  width: 500px;
  height: 200px;
}

#text {
  font-family: "Raleway", sans-serif;
  font-size: 2.5vh;
  font-style: oblique;
}

#extra-text {
  text-align: right;
  font-family: "brush Script MT";
  font-size: 3vh;
}

#photo-credit {
 	background-color: rgba(255,255,255,0.5); 
  position: fixed;
  bottom: 5%;
  right: 3%;
  font-family: "Barlow", sans-serif;
  font-size: 2vh;
}