
@font-face {                  
font-family: 'leMurmure';
src: url(https://humantooth.neocities.org/fonts/LeMurmure-Regular.woff) format('woff');
font-weight: normal;
font-style: normal;
} 
::-webkit-scrollbar {
 width: 5px; 
}
::-webkit-scrollbar-track {
  background: #d8e1e8;
}
::-webkit-scrollbar-thumb {
  background: #519ead; 
}
::-webkit-scrollbar-thumb:hover {
  background: #4e7c88; 
}

a {
  cursor: url("images/cursorhover2.png"), auto !important;
  background-color: #519ead;
  display: block;
  color: #c6bb50;
  font-weight: bold;
  text-align: center;
  border-style: solid;
  border-color: transparent;
  border-width: 2px;
  border-radius: 10px;
  padding: 2px;
}
body {
  cursor: url("images/cursorsm.png"), auto !important;
  background-image: url("images/IMG_2199.jpeg");
  background-size: 50%;
  color: black;
  font-family: Verdana;
}
h1 {
  font-family: 'leMurmure';
  font-size: 55pt;
}
h2{
  font-family: 'leMurmure';font-size: 30pt; 
}
h3 {
  font-family: 'leMurmure';font-size: 20pt;
  color: black;
  background-size: 20%;
  background-color: #519ead;
  text-align: center;
  border-color: transparent;
  border-style: solid;
  border-width: 3px;
  border-radius: 10px;
  margin: 2px;
}
ul {
  background-image: url("images/accentblue.png");
  background-size: 10%;
  background-repeat: no-repeat;
  background-position: 4% 50%;
}
.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 250px 3fr;
  gap: 8px;
  padding: 10px;
  margin-left: 10px;
  margin-right: 100px;
  margin-top: 10px;
}
.container div {
  padding: 10px;
}
.header {
  grid-area: header;
  border: solid;
  border-width: 4px;
  border-color: #C6BB50;
  border-radius: 5px;
  background-color: #d8e1e8;
  background-image: url("images/IMG_2204.png");
  background-position: 0% 40%;
  background-size: 55%;
  background-repeat: no-repeat;
}
.menu {
  grid-area: menu;
  border: solid;
  border-width: 4px;
  border-color: #C6BB50;
  border-radius: 5px;
  background-color: #d8e1e8;
  background-image: url("images/IMG_2203.png");
  background-position: right top;
  background-size: 80%;
  background-repeat: no-repeat;
}
.content {
  grid-area: content;
  border: solid;
  border-width: 4px;
  border-color: #C6BB50;
  border-radius: 5px;
  background-color: #d8e1e8;
  background-image:url("images/IMG_2204.png"), url("images/accent2.png");
  background-position: 0% 3%, right top;
  background-repeat: no-repeat, no-repeat;
  background-size: 40%, 15%;
}
.container div.art-gallery {
  max-height: 550px;
  overflow-y: auto;
}
.art-gallery div {
  width: 25%;
  height: 25%;
  margin: 0px;
  border: 3px solid transparent;
  border-radius: 5px;
  position: relative;
}
.art-gallery div span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #c6bb50;
  color: black;
  text-align: left;
  padding: 5px 10px;
  font-size: 13px;
  opacity: 0;
  transform: translatey(-30px);
  transition: transform 0.4s ease, opacity 0.5s ease;
}
.art-gallery div:hover span {
  opacity: 0.9;
  transform: none;
}
.art-gallery div img {
  cursor: url("images/cursorhover2.png"), auto !important;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s ease;
}
.art-gallery div:hover img {
  transform: scale(1.15); 
}
.art-gallery {
 display: flex;
 flex-wrap: wrap;
}
.art-gallery div {
  box-sizing: border-box;
  width: calc(25% - 6px);
  overflow: hidden;
}
@media (max-width: 800px) {
  .art-gallery div {
    width: calc(50% - 10px);
  }
}