* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
}
body {
    background: whitesmoke; 
    min-height: 100vh;
    min-width: 300px;
    margin: 1em;
    overflow-x: hidden;
}
.min-width {
    min-width: 100vh;
}
.about {
    overflow-y: hidden;
}
.sticky {
   position: fixed;
   bottom: 0;
   right: 0;
   font-family: Arial, Helvetica, sans-serif;
   text-align: left;
   font-size: 15px;
   font-weight: bolder;
   margin-bottom: 0px;
   margin-right: 5px;
   color:black;
}
.back {
    margin-top: 5rem;
    font-size: 40px;
    margin-bottom: 2rem;
    color: white;
}
.hide {
    display: none;
}
a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}
a:visited {
    color: black;
}
a:hover {
    color: red;
}
a img {
    height: 1em; /* This scales the image with respect to the font size of the parent container */
    vertical-align: middle; /* This aligns the image with the middle of the text */
    margin: 5px;
}

.folder {
    height: 120px;
    width: 120px;
    margin-bottom: -0.5rem;
}
.images-background {
    background-color: black;
}
span {
    font-weight: 600;
}
.space {
    margin: 1em 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 0px;
}
.gallery img {
  max-width: 100%;
  height: auto;
}
.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}