*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    background-color: rgba(255, 255, 255, 0.842);
}
.gallery_container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 20px 0 20px;
}

.gallery_container .gallery_heading{
  width: 50%;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.gallery_container .gallery_heading h1{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: lighter;
  letter-spacing: 0.2rem;
  font-size: 1rem;
  color: rgb(200, 150, 41);
  padding-bottom: 10px;
  border-bottom: 3px solid rgba(200, 150, 41, 0.702);
}

.gallery_container .gallery_box{
 display: flex;
 flex-direction: row;
 justify-content: space-between;
}

.gallery_container .gallery_box .img_box{
  display: flex;
  flex-direction: column;
  width: 32.5%;
}
.gallery_container .gallery_box .img_box img{
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}

.nav-bar{
  display: none;
}

.nav-menu{
  display: none;
}

.nav-op{
  display: none;
}

