body {
    margin: 60px auto;
    width: 70%;
    font-family:'Helvetica', 'Arial', 'Sans-Serif';

}
nav ul, footer ul {
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
    padding: 0px;
    list-style: none;
    font-weight: bold;
}
nav ul li, footer ul li {
    display: inline;
    margin-right: 20px;
}
a {
    text-decoration: none;
    color: #999;
}
a:hover {
    text-decoration: underline;
}
h1 {
    font-size: 3em;
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
}
p {
    font-size: 1.5em;
    line-height: 1.4em;
    color: #333;
}
footer {
    border-top: 1px solid #d5d5d5;
    font-size: .8em;
}
 
/* Main content */

main {
    max-width: 1200px;
    background-color: white;
    margin: 2rem auto;
    position: relative;
  }
  
  main article {
    box-sizing: border-box;
    padding: 2rem;
  }
  main img{
      width: 100%; 
  }

  .center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
} 

/*polaroid*/ 
  .polaroid {
    margin: 1.75rem;
    padding: 1rem 1rem 0 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: width 100ms;
  }
  
.polaroid.left {
    float: left;
    margin-left: 1rem;
    width: 40%;
  }
  
  .polaroid.right {
    float: right;
    margin-right: 1rem;
    width: 40%;
  }

.polaroid p {
    margin: 0.5rem 0 0.75rem 0;
    color: #666;
    text-align: center;
    font-size: 0.8rem; 
    font-family:'Helvetica', 'Arial', 'Sans-Serif';
  }

  /* resume */
  .resume p {
    font-size: 1.2em; 
   }

  .resume-item h1 {
      font-size: 1.2em; 
  }
  
  .resume-item h2{
    font-size: 0.8em; 
    position: absolute; 
    right: 0;
}
.resume-item h3{
    font-size: 1em; 
}
  .grid-container {
    display: grid;
  }
  .grid-container.two-columns {
    grid-template-columns: 25% 75%;
    padding: 10px;
  }
  .grid-container.three-columns {
    grid-template-columns:  30% 30% 30%;
    border-bottom: 1px solid #ccc ; 
  }
  .grid-container.three-columns.last {
    border-bottom: none; 
  }
  .grid-item {
    padding: 5px;
  }
  .grid-item.category {
    font-style: italic; 
  }

  /* New York, New York! */
.shush {
    display: none;
  } 
.sing:hover .shush {
    display: block;
  }

  /* Slide show */
  .slides.card {
    width: 80%;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
  }
  
  .slides div.content {
      background-color:rgb(102, 127, 106);
      color: white;
      padding: 10px;
      font-size: 1.2em; 
  }
  
  .slides div.source {
      padding: 10px;
  }