body {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  background-color: #FFFFFF;
  color: #3b3b3b;
}

@font-face {
  font-family:"Bodoni-Bold";
  src: url("bodoni/BodoniFLF-Bold.ttf") format("truetype");
}

header {
  background-color: #424242;
  color: #FFFFFF;
  font-family: Bodoni-Bold, Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  text-align: center;
  grid-column: 1 / 6;
  grid-row: 1;
}

header h1 {
  line-height: 140%;
  padding: 0.5rem;
  margin: 0px;
}

header h3 {
  margin: 0px;
  padding: 0.5rem;
}

nav {
  font-weight: bold;
  background-color: #424242;
  padding:0.5rem;
  grid-column: 1 / 6;
}

nav a {
  text-decoration: none;
  color: #FFFFFF;
}

nav2 {
  text-align: center;
  grid-row: 7;
  grid-column: 2 / 6;
}

nav2 a {
  text-decoration: none;
  color: #424242;
}

h2 {
  color: #424242;
  font-family: Georgia, serif;
  text-align: center;
  text-decoration-line: underline;
}

footer {
  font-size: 0.70rem;
  font-style: italic;
  text-align: center;
  grid-row: 8;
}

#wrapper {
  display: grid;
  grid-template-columns: minmax(0px, 1fr) repeat(3, minmax(0, 3fr)) minmax(0px, 1fr);
  grid-auto-rows: minmax(0px, auto);
  background-color: #FFFFFF;
  min-width: 960px;
  max-width: 2048px;
}

main {
  grid-row: 3;
  grid-column: 2 / 5;
}

main img {
  float: left;
  padding: 10px;
}

main2 {
  grid-row: 4;
  grid-column: 2 / 5;
}

main2 img {
  float: right;
  padding: 10px;
}

video {
  float: right;
  padding: 1rem;
}

#ringphoto {
  grid-column: 1 / 6;
  grid-row: 2;
  background-image: url("Images/ring.PNG");
  height: 450px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}

#wrapper div img {
  width: 100%;
  height: 400px;
}

#gallery {
  display: flex;
  flex-flow: flex wrap;
  justify-content: space-between;
}

#gallery div img {
  width:400px;
  padding: 10px;
  height:auto;
}

footer {
  grid-column: 2 / 6;
}



@media screen and (max-width: 992px) {
  #wrapper{
    grid-template-columns: minmax(0px, 1fr) minmax(0, 768px) minmax(0px, 1fr);
  }

  .one {
    grid-column: 2;
  } 
  
  .onepic {
    grid-column: 2;
    grid-row: 4;
  }
  
  .onepic img {
    height: auto;
    float: bottom;
  }
  
  .two {
    grid-column: 2;
    grid-row: 5;
  }
  
  .twopic {
    height: auto;
    grid-row: 6;
    grid-column: 2;
  }
  
  #ringphoto {
    grid-column: 1 / 4;
    grid-row: 2;
    background-image: url("Images/ring.PNG");
    height: 450px;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
  }
  
  #wrapper div img {
    width: 100%;
    height: 400px;
  }
}