:root {
  --image-dropshadow: drop-shadow(2px 2px 2px rgb(62, 62, 62)) brightness(105%);
  --h1-fontsize: 2rem;
  --h2-fontsize: .9rem;
  --h2-h3-color: whitesmoke;
  --h3-fontsize: .9rem;
  --update-fontsize: .7rem;
}
 

/* this includes the paddings and border in the width/height defined */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: verdana;
  scrollbar-color: black whitesmoke;
}

body {
  background-color: whitesmoke;
  line-height: 1.5rem;
}


.grid-gallery {
  display: grid;
  margin: 0 3rem 0 3rem;
    /* define the number of grid columns */
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  align-items: center;
  justify-items:center;
}

.grid-gallery img {
  width: 100%;
  height: 100%;
    /* border from broider @ https://maxbittker.github.io/broider/ */
  border-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFQAAABUCAYAAAAcaxDBAAACrklEQVR4Xu2aQW4jMQwEnf8/Ouu9BGvFcKnEHngNdK6U2GSJlOhBvm79ixL4inqrs1uBhougQAs0TCDsrhVaoGECYXet0DcA/V40p4cw9TfdbxEqvR04yuFGtFN/0/0bIT4sUXoFyngLlBmpFXGgpK4EydndPvVn99v1L1PYaXliEA2oQOcVtR7Y9IDsfru+FQot9nagNgBa/257tENO7lACYAMkf1fbbbzxlqcEbYDk72q7jbdA5U9nOsA40OkYRQG/2075FehCgA6sQCWwAg0D+++BUoCrfdRSgc3rqEjxK8mTOdSOGQWqjoR/yxdogUoC/yw/aXm6c6giTzTPM/zdQasviofyffBHzp4lQgIFKo+/QF8Aa4Xe8B/mqIDGLT8dm04OUTbRw3ICQnalnUiOAiK7CvhgMemTXUkWKM/RBRr+7R8Halvi08cmm69+lKxAgUJNF6ho+p1HqUDDQMkdASc7+Z/aSZ/sSn+nQskhBUR28j+1kz7ZlX6Bdg5VBfN3MVUg2ZXgSYVSAJ8+NtlvFXoOtQIFqmrat9Dq/qQrZIgvvzbZeKgjW6ELUTrgy4FOrwBKYFKNz/YSELKreBLJUUBkVwEfLCZ9sivJAuU3oUAXAlSBZI8DtYKfPjbZfPUrbwUKFGq6QEXT7zxKBRoGSu4IOF0B5D9t7/+HhokWaIE+EmjLDyvC3qm2Ba/2P0p/55W3AlcnfLV/m68e7K3A1Qlf7d/mW6Dye6gCfNLyVCHp76WkN7XbeF8CLtDfeOiAClS2eIECMAvIro8/SjYAuz56xz3p12k8BbpALVB5J9LYU6CfDjR6glQud/tUb7p/dGfvzKHpAInpVG+6v0CvfGRsx7RCqV/kFbQDlCW74odAgYaLoUALNEwg7K4VWqBhAmF3rdACDRMIu/sDw8AwZIg2AAUAAAAASUVORK5CYII=') 28 /  28px / 0 round;
  border-width:  28px;
  border-style:  solid; 
}

.grid-gallery a {
  display: inline-block;
  scale: 80%;
  width: 100%;
  height: 100%;
}

.grid-gallery img:hover {
  transform: scale(1.05);
  filter: var(--image-dropshadow);
}

header {
  padding: 1rem;
  text-align: center;
  line-height: 1.8em;
}


header img {
  height: 80px; 
  width: auto;
}

a img:hover{ 
  cursor: url(../images/favicons-pixels/googlyeyes.gif), auto;
  transform: scale(1.1);
  filter: var(--image-dropshadow);
}

h1 {
  font-size: var(--h1-fontsize);
  text-shadow: 1px 1px 2px rgb(147, 146, 146);
  letter-spacing: .05rem;
}

h2 {
  font-size: var(--h2-fontsize);
  color: var(--h2-h3-color);
  letter-spacing: .03rem;
  font-weight: lighter;
  font-style: italic;
}

h3 {
  font-size: var(--h3-fontsize);
  color: var(--h2-h3-color);
  font-weight: lighter;
  letter-spacing: .03rem;
}

.title-return-wrap {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.title h1 {
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  padding: 1rem;
}

.title-img img {
  margin-left: 50px;
  height: 5rem;
  width: auto;
  margin-right: 50px;
}

.description {
  overflow-x: auto;
  scrollbar-color: whitesmoke black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  padding: 1rem;
  margin: 1rem 18rem 1rem 15rem;
  border: 3px black solid;
  height: 40vh;
  background-color: black;
  border-radius: 10px;
}

.updated {
  display: flex;
  justify-content: center;
  font-size: var(--update-fontsize);
  font-weight: bold;
}



@media (max-width: 768px) {
  body {
    line-height: 1rem;
  }

  h1 {
    font-size: 1.2rem;
  }

  h2 {
    font-size: .6rem;
    letter-spacing: .01rem;
  }

  h3 {
    font-size: .6rem;
    letter-spacing: .01rem;
  }

  .title-return-wrap {
    flex-direction: column;
  }

  .title-return-wrap img {
    height: 3rem;
    width: auto;
  }

  .grid-gallery {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .grid-gallery img{
    scale: 95%;
    width: 65vw;
    height: auto;
  }
  

  .description {
    margin: .5rem 2rem 9px 2rem;
  }
}
