nav#main-nav ul {
    list-style: none;
    margin: 0;
    padding: 1em 10em;
    display: flex;
    justify-content: space-between;
    font-family: 'Agency FB', sans-serif;
    font-size: 20pt;
    background-color: rgb(214, 41, 41);
}

nav#main-nav ul li a {
    display: inline-block;
    color: black;
    padding: .2em 2em;
    margin: 0 10px;
    text-decoration: none;
    transition: all .5s;

}

nav#main-nav ul li a:hover {
    color:white;

}

nav#main-nav ul li a.selected {
    color:white;
}

h1 {
    font-family: 'Agency FB', sans-serif;
    font-size: 210pt;
    color: white;
    text-align: center;
    margin: 0 0 0 0; 
  }

  h2 {
    font-family: source-han-sans-japanese, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: white;
    text-align:right;
    font-size: 80pt;
    margin: .2em 0 0 0; 
    line-height: 10px;
  }

  h3 {
    font-family: 'Agency FB', sans-serif;
    font-size: 50pt;
    color: rgb(0, 0, 0);
    margin: 0 0 0 0; 
  }

  #section1 {
    background-color: rgb(214, 41, 41);
    height: 600px;
}

#copy {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#copy img {
    float: left;
    object-fit: cover;
    width: 500px;
    margin: 0 0 30px 40px;
    padding: 50px;
}

.text {
    margin: 0 0 30px 40px;
    padding: 50px;
    font-size: 15pt;
}


body {
    background-image: url('../images/bgdots.jpg');
    background-repeat: repeat-y;
    background-size: contain;
    font-family:"neue-haas-grotesk-display";
    font-style:normal;
    font-weight:400;
    line-height: 1.8;

  }

  #biography {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  #biography img {
    width: 400px;
    float: left;
    margin: 20px 30px 10px 0;
  }

  #biography .rightimage {
    width: 400px;
    float: right;
    margin: 20px 30px 0 10px;
  }

  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
  }
  
  /* Create four equal columns that sits next to each other */
  .column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 24%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 800px) {
    .column {
      -ms-flex: 50%;
      flex: 50%;
      max-width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      -ms-flex: 100%;
      flex: 100%;
      max-width: 100%;
    }
  }

#art {
    align-content: center;
    box-sizing: border-box;
    margin: 0;


}

#art img:hover {
    -webkit-transform:scale(1.5); /* or some other value */
    transform:scale(1.5);
}

#art img {
    transition:transform 0.25s ease;
}