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;
} 

.topbtn {
    position:fixed;
    bottom: 5px;
    right: 5px;
    z-index: 1;
    color: black;
    background-color: rgb(236, 238, 233);
    padding: 4px 7px;
    border-style: hidden;
    border-radius: 3px;
    cursor: pointer;
    align-items: center;
    text-align: center;
    opacity: .35;
}
.topbtn:hover {opacity: 1}

.grid {
  display: grid;
  gap: 0;
  grid-template-areas: 
      'header header header header'
      'subhead subhead subhead subhead'
      'col1 col2 col3 col4';
  width: 90%;
  padding: 5px;
  margin: 5px auto 5px auto;
  background: rgb(236, 238, 233);
  }
  
.header {
   grid-area: header;
   font-size: 1.5em;
   font-weight: bold;
   width: 90%;
   padding: 5px;
   margin: 5px;
   background-color: rgb(236, 238, 233);
}
.subhead {
  grid-area: subhead;
  font-size: 1em;
  font-weight: normal;
  padding: 5px;
  margin: 0;
  background-color: rgb(236, 238, 233);
}  

.col1 {
  grid-area: col1;
  justify-content: center;
  background: rgb(236, 238, 233);
  padding: 10px;
}
.col2 {
  grid-area: col2;
  justify-content: center;
  background: rgb(236, 238, 233);
  padding: 10px;
}
.col3 {
  grid-area: col3;
  justify-content: center;
  background: rgb(236, 238, 233);
  padding: 10px;
}
.col4 {
  grid-area: col4;
  justify-content: center;
  background: rgb(236, 238, 233);
  padding: 10px;
}

.imgcont {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%
}

.img {
  display: flex;
  width:100%;
  margin: 5px auto;
  transition: .5s ease;
}
.imgcont:hover .img {opacity: .5}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: .5s ease;
  opacity: 0;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.imgcont:hover .overlay{opacity: 1}

.title {
    background-color: rgb(236, 238, 233);
    color: darkslategray;
    padding: 4px 8px;
    text-align: center;
    white-space: nowrap;
    font-weight: bold;
    font-style: italic;
    font-size: small;
}
.medium {
    background-color: rgb(236, 238, 233);
    color: darkslategray;
    padding: 4px 8px;
    text-align: center;
    white-space: nowrap;
    font-style: italic;
    font-size: small;
}  
.dimensions {    
     background-color: rgb(236, 238, 233);
    color: darkslategray;
    padding: 4px 8px;
    text-align: center;
    white-space: nowrap;
    font-size: small;
}
.year {
    background-color: rgb(236, 238, 233);
    color: darkslategray;
    padding: 4px 8px;
    text-align: center;
    white-space: nowrap;
    font-size: small;
} 
.notes {
    background-color: rgb(236, 238, 233);
    color: darkslategray;
    padding: 4px 8px;
    text-align: center;
    white-space: nowrap;
    font-size: xx-small;
} 

.foot {
  display: block;
  background: rgb(102, 0, 0);
  background-image: url(photos/footlogo.png);
  background-repeat: no-repeat;
  background-position: right top;
  color: rgb(216, 218, 213);
  height: 150px;
  margin: 20px 0 0 0;
  padding: 15px 15px 15px 75px;
  border-radius: 0;
}


