body {
  /* bg paradox */
  background-image: url("sparkle.png"); 
  background-size: auto 620px;
  background-repeat: repeat-x;
    background-attachment: fixed;
    color: white;
    font-family: Garamond;
      cursor: url("cedar.png"), auto;
    text-align: center;
}

a:hover {
  cursor: url("cedar.png"), pointer;
}


/* Unvisited link*/
a:link {
  color: #fa5c00;
}
/* visited link */
a:visited {
  color: #000000;
  
}

 #Introduction{
      background-image: linear-gradient(190deg,rgba(255, 255, 255, 0.85) 0%, rgba(255, 119, 0, 0.66) 50%, rgba(0, 0, 0, 0.52) 100%);
      border-radius: 25px;
      border: #94481c 7px double;
      height: 390px;
      width: 700px;
      padding: 5px;
      background-position: center;
      background-attachment: fixed; 
      margin: auto;  
}

#memes{
      background-image: linear-gradient(190deg,rgba(255, 255, 255, 0.85) 0%, rgba(255, 119, 0, 0.66) 50%, rgba(0, 0, 0, 0.52) 100%);
      border-radius: 25px;
      border: #94481c 7px double;
      height: 270px;
      width: 700px;
      padding: 5px;
      background-position: center;
      background-attachment: fixed; 
      margin: auto;  
}



/* Dropdown Button */
.dropbtn {
  background-color: #ff8800;
      color: black;
    font-family: Garamond;
  padding: 8px;
  font-size: 20px;
  border: #000000 3px dashed;
  border-radius: 25px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #733400;
  min-width: 70px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #b55100;}