
 *{
  box-sizing: border-box;
}

.body {
   font-family: Courier, helvetica;
   background-image: url(swirl_pattern.png);
   background-attachment: fixed;
   
}

/* Style the header */
.header {
  grid-area: header;
  *background-color: #98C0E0;
  
  
  padding: 0px;
  text-align: left;
  font-size: 35px;
}

/* The grid container */
.grid-container {
  display: grid;
  grid-template-areas: 
    'header header header header header header'
    'footer footer footer footer footer footer '
    'left left middle middle right right' ;
  /* grid-column-gap: 10px; - if you want gap between the columns */
} 

.left,
.middle,
.right {
  padding: 0px;
  width: 600px;
  *height: 300px; /* Should be removed. Only for demonstration */
}



/* Style the left column */
.left {
  grid-area: left;
  background-color: #98C0E0;
 
}

/* Style the middle column */
.middle {
  grid-area: middle;
  background-color:#bbb;
}

/* Style the right column */
.right {
  grid-area: right;
  background-color:#ccc;
  
}

/* Style the footer */
.footer {
  grid-area: footer;
  *background-color: #98C0E0;
  padding: 10px;
  text-align: left;
}

.img {

  height: auto;

  width: 580px;

}
.topnav {
  background-color: #333;
  overflow: hidden;
}
.topnav a {
  float: center;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav  {
  position: fixed;
  top: 0;
  width: 100%;
}

/* <uniquifier>: Use a unique and descriptive class name
 <weight>: Use a value from 400 to 900 */

*.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
}



.audio {
    
    width: 580px;
    height: 50px;
    background-color:#98C0E0;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .grid-container  {
    grid-template-areas: 
      'header header header header header header'
      'footer footer footer footer footer footer'
      'left left left left left left' 
      'middle middle middle middle middle middle' 
      'right right right right right right';
  }
}