/* 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." */

html, body {
  cursor: url("http://www.rw-designer.com/cursor-extern.php?id=82207"), auto;
  }

body {
  background-image: url("wallpaper.png");
  color: #f0c1f7;
  font-family: Georgia, sans-serif;
  text-align:center;
}

.intro {
background-color:#695870;
border: 5px groove #f0c1f7;
margin-top:20px;
margin:15px;
}

.header-bottom {
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  justify-content:center;
  
}

.links {  
  background-color:#695870;
  border: 5px groove #f0c1f7;
  text-align:left;
  width:200px;
  padding-top:10px;
}


.desc {  
  background-color:#695870;
  border: 5px groove #f0c1f7;
  width:750px;
  padding-top:10px;
  padding-bottom:5px;
}

.stamps {
  margin-top:15px;
}





/* Not Classes/IDs */

a:link {
  color:violet;
}

a:visited {
  color:darkorchid;
}

a:hover {
  border: 1.5px groove lightcoral;
  background-color: papayawhip;
}