:root {
  --text-color: rgb(53, 53, 53); 
}

/* this includes the paddings and border in the width/height defined */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Georgia;
  font-weight: 400;
  font-style: normal;
  scrollbar-color: black whitesmoke;
}

body {
  background-color: whitesmoke;
}


.flex-wrap {
  min-height: 100vh;
  height: 100%;
  margin: auto auto;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.grid-gallery img {
  width: 150px;
  height: 150px;
}

.grid-gallery img:hover {
  transform: rotate(3deg) scale(1.05);
  filter: drop-shadow(2px 2px 1px rgb(62, 62, 62)) brightness(105%);
}

header {
  padding: 1rem 1rem 0 1rem;
  text-align: center;
  line-height: 1.8em;
  color: var(--text-color);
}

.home img {
  height: 5rem;
  width: auto;
}

h1 {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .05rem;
  text-shadow: 1px 1px 2px rgb(147, 146, 146);
}

h2 {
  font-size: .9rem;
  letter-spacing: .1rem;
}

img:hover {
  cursor: url(../images/favicons-pixels/googlyeyes.gif), auto;
}

.transform:hover img {
  transition-duration: 0.4s;
  scale: 1.1;
}

a img:hover{ 
  cursor: url(../images/favicons-pixels/googlyeyes.gif), auto;
  transform: scale(1.1);
  filter: drop-shadow(2px 2px 1px rgb(62, 62, 62)) brightness(105%);
}

