body {
  background-color: grey;
  color: white;
  font-family: comic-sans;
  cursor:url(assets/ui/hand.png),auto;
  margin: 0;
  padding:0;
  width: 100vw;
 height: 100vh;
 font-size: 32px;
cursor:url(../ui/hand.png),auto;
}

.button-container {
  display: grid;
  /* Optional: centers items if they are different sizes */
  justify-items: center; 
  align-items: center;
  padding: 30px;
  cursor:url(../ui/hand.png),auto;
}

.button-container > * {
  /* Places all direct children into the first (and only) grid cell */
  grid-column: 1 / 1; 
  grid-row: 1 / 1;
}
.button {
    background-color: #AAAAAA; /* Red background */
    color: white; /* White text */
    padding: 14px 25px; /* Spacing inside the button */
    text-align: center; /* Center the text */
    text-decoration: none; /* Remove default underline */
    display: inline-block; /* Allows padding and margins to work correctly */
    border-radius: 8px; /* Rounded corners */
    cursor:url(../ui/hand.png),auto;

}
.depresses {
    transition: transform 0.2s ease-in-out;
  }

.depresses:hover {
    background-color: #EEEEEE;
    transform: translate(0px, 10px);
}

.center {
  text-align: center;
  align-content:center;
  }
  
  .img-divider {
    max-width: 90vw;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    }
  
.entry-van {
  max-height: 40vh; 
  width: auto;
}
.img-welcome {
  width: 30vw;
  height: auto;
  vertical-align: middle;
  filter: hue-rotate(180deg) brightness(2);
  }
  .icon {
    max-height: 64px;
    width: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    }


  
/* If screen is less than 800px wide (phone) */
@media (max-width: 800px) {
  body {
    font-size: 20px;
    background-color: lightgray;
  }
  .button {
    padding: 8px 12px;
    border-radius: 6px;
  }
  .img-welcome {
    width: 90vw;
  }
  .entry-van {
    max-height: 50vh;
  }
  .icon {
    max-height: 32px;
    width: auto;
    }







