/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding and margin */
* {
  padding: 0;
  margin: 0;
}

html, body {
    height: 100%;
    margin: 0;
}

/* Set core body defaults */
body {
  background: black;
   /* Optional: background color if the image doesn't cover the whole screen */
}

/* Improve text rendering */
body, button, input, select, textarea {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
#bio {
  display: none;
}
#imageGallery {
  display: flex;
  justify-content: center;
  align-items: center;
}

#imageGallery img, #imageGallery video {
  display: none;
  height: 100vh;
  object-fit: cover; /* This makes the image cover the available space */
  object-position: center; /* This centers the image within its container */
  width: 100vw;
}

#imageGallery img.active {
    display: block;
}

#imageGallery img.tile {
    background-size: 2em;
}

/* Add more styling as needed */