/* this includes the paddings and border in the width/height defined */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Georgia;
  scrollbar-color: black whitesmoke;
}

body {
  background-color: whitesmoke;
}


.grid-gallery {
  display: grid;
  margin: 0 3rem 0 3rem;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  grid-gap: 50px;
  align-items: center;
  justify-items:center;
}

.grid-gallery img {
  scale: 90%;
  width: 100%;
  height: 100%;
}

.grid-gallery img:hover {
  transform: scale(1.05);
  filter: drop-shadow(2px 2px 1px rgb(62, 62, 62)) brightness(105%);
}

header {
  padding: 1rem;
  text-align: center;
  line-height: 1.8em;
}

h1 {
  text-shadow: 1px 1px 2px rgb(147, 146, 146);
}

header img {
  height: 80px; 
  width: auto;
}

a img:hover{ 
  cursor: url(../images/favicons-pixels/googlyeyes.gif), auto;
  transform: scale(1.1) rotate(4deg);
  filter: drop-shadow(2px 2px 1px rgb(62, 62, 62)) brightness(105%);
}

h1 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .05rem;
}

h2 {
  font-size: .9rem;
  letter-spacing: .1rem;
  font-weight: lighter;
}



@media (max-width: 768px) {

  .grid-gallery {
    grid-template-columns: 1fr;
  }

  .grid-gallery img{
    width: 60vw;
    height: auto;
  }
}
