/* 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: white;
  color: black;
  font-family: "Vollkorn";
  margin:0 auto;
  
}

.hidden{
 display:none; 
  
}

.unhidden{
  display:block;
}

#content{
  width:80%;
   margin-left: auto;
    margin-right: auto;
  
}
h1{
font-family: 'Architects Daughter', cursive;
 font-size:3em;
}
p,h2,h3{
 font-family:"Vollkorn",sans-serif; 
  
}


img {
    position: absolute;
    float:right;
    top: 0px;
    right: 0px;
    z-index:-1;
}

.tableHeader,.tableRow,.oddTableRow,.evenTableRow{
  background-color:white;
  color:black;
  font-family:"Vollkorn",sans-serif;
  font-size:1.5em;
  text-align:left;
  
  
}
iframe{

 width:100%;
}

#intro{
 width:50%;
 float:left;
}

#nextlist{
text-align:center;
 width:100%;
}

.text-right{
 text-align:center;
}

#wishList_table{
  
  display: inline-block;
  padding:20px;
  margin: 0 auto;
  
}

button{

    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    font-family:"Kristen ITC";
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    background-color: white;
    color: black;
    border: 2px solid #555555;
}
button:hover{
  background-color: #ababab;
    color: white;
}

#goto{
 background-image:url(GoTo.png); 
 border:none;
 width:300px;
 height:500px;

  
}

#goto:hover {
    background-color: #ababab;
    color: white;
}