/* 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-color: darkslateblue;
  color: mediumslateblue;
  font-family: Georgia, serif;
  margin-left: 300px;
  margin-right: 100px;
  margin-top: 50px;
  font-size: 18px; 
  line-height: 1.8;
  cursor: url(https://www.dropbox.com/s/3zejaccc1fhhbh8/fork3.png?raw=1), pointer;
  height:100%;
} 
 

 hover{
   cursor:url(https://www.dropbox.com/s/o9qr6kjts8x307a/fork5.png?raw=1), pointer;
 }
 
/* unvisited link */
a:link {
  color: mediumslateblue;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: red;
}

/* selected link */
a:active {
  color: blue;
}

.sidebar {
height: 100%;
width: 200px;
position: absolute;
left: 0;
top: 0;
padding-top: 50px;
background-color: black;
color: mediumslateblue;
}

.sidebar div {
padding: 8px;
font-size: 20px;
font-family: Georgia, sans-serif;
font-style: bold;
display: block;
}

footer {
position: absolute;
bottom: 0;
width: 100%;
margin: 0 auto;
}

div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

.desc {
  padding: 15px;
  text-align: center;
}

.text-box {
  padding: 25px;
  margin-top: 5px;
  margin-bottom: 30px;
  margin-left: 25px;
  margin-right: 25px;
  border-radius: 25px;
  background-color: lavender;
  font-color: violet;
  font-size: 18px;
  border: 2px solid black;
  background-image: url(/pink-cake.png);
  background-position: left top;
  background-repeat: no-repeat;
}

.text-box2 {
  padding: 25px;
  margin-top: 5px;
  margin-bottom: 30px;
  margin-left: 25px;
  margin-right: 25px;
  border-radius: 25px;
  background-color: lavender;
  font-color: violet;
  font-size: 18px;
  border: 2px solid black;
  background-image: url(/purple-cake.png);
  background-position: left top;
  background-repeat: no-repeat;
}
