
body {background: rgb(165, 40, 40);
      padding: 0;
      margin: 0;
      font-family: verdana, sans-serif;
}

 .head {
   width:100%;
   background: rgb(236, 238, 233);
   padding: 0;
 }
  
.logo {
  height: 100px;
} 
 
.headcal {
  display: inline;
  font-weight: normal;
  margin-left: 10px;
} 
 
 .navbar {
  display: flex;
  background: rgb(236, 238, 233);
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 5px;
  border-top: 3px solid rgb(102, 0, 0);
  }
  
.navbtn {
  background-color: rgb(236, 238, 233);
  border: none;
  border-radius: 5px;
  padding: 15px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  height: 100%;
}
.navbtn:hover {background-color: rgb(216, 218, 213)}

.icon {
  align-self:center; 
  float: right; 
  height: 25px;
  width: auto;
  margin-right:15px;
}
 .iconcontainer {
   width: 100%;
  justify-content: flex-end;
} 

.grid {
  display: grid;
  gap: 5px;
  grid-template-areas: 
      'blurb blurb blurb blurb blurb about about'
      'foot foot foot foot foot foot foot';
  width: 90%;
  padding: 5px;
  margin: auto;
  background: rgb(165, 40, 40);
  border-radius: 5px;
  }
  
.about {
  grid-area: about;
  background: rgb(236, 238, 233);
  padding: 10px;
  border-radius: 5px;
  justify-content: center; 
  text-align: center;
  }
.blurb {
  grid-area: blurb;
  background: rgb(236, 238, 233);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  }
.foot {
  grid-area: foot;
  background: rgb(236, 238, 233);
  border-radius: 5px;
  }
.calimg {
  width: 90%;
  border-radius: 5px;
  margin: auto;
  justify-content: center;
}

.gallery {
  display: flex;
  flex-wrap: nowrap;
  width: 95%;
  padding:  15px;
  margin: auto;
  justify-content: flex-start;
  align-items: center;
  border-style: solid;
  border-color: rgb(102, 0, 0);
  border-width: 10px;
} 

.galleryimg {
  height: 150px;
  width: auto;
  margin: auto;
}
.galleryimg:hover {opacity: .7}

.arrowbtn {
  height: 50px;
  margin: 5px 0 5px 5px;
  align-content: center;
}
  
  
      