body, html {
  height: 100%;
}
body {
background-color: #effefb;
font-family: monospace, sans-serif;
/*font-size: 1.8em;*/
text-align: justify;
text-justify: inter-character;
height: 100%;
color: rgb(44, 47, 60);
text-shadow: 0em 0em 0.33em rgb(239, 254, 251);
/* text-shadow: -1px 1px 0 rgb(44, 47, 60), 1px 1px 0 rgb(44, 47, 60), 1px -1px 0 rgb(44, 47, 60), -1px -1px 0 rgb(44, 47, 60); */
-webkit-text-stroke: 0.03em rgb(239, 254, 251);
font-weight: bolder;
width: 92%;
margin: 0 auto;
}
.bg {
  background-image: url("images/peacetotheworld.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* position: relative; */
  position: sticky;
  /* text-align: center; */
  background-attachment: fixed;
}
/* (A) WHOLE PAGE */
* { box-sizing: border-box; }
/* body { background: #eee; } */

/* (B) GALLERY WRAPPER */
.gallery {
  /* (B1) GRID LAYOUT - 3 IMAGES PER ROW */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3px;

  /* (B2) OPTIONAL WIDTH RESTRICT */
  /* max-width: 333px; */
  margin: 0 auto;
  overflow: hidden;
}
/* (C) GALLERY IMAGES */
.gallery img {
  /* (C1) DIMENSION */
  width: 100%;
  height: 100%; /* optional */
  padding: 0px;

  /* (C2) COLORS */
  border: 1px solid #ddd;
  background: #fff;

  /* (C3) IMAGE RESIZE */
  /* cover | contain | fill | scale-down */
  object-fit: cover;
  position: relative;
}
/* (D) ON SMALL SCREENS - 2 IMAGES PER ROW */
@media only screen and (max-width: 1000px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* (E) OPTIONAL ZOOM ON HOVER */
/* .gallery img:hover {
  z-index: 9;
  transform: scale(1.1);
  /* linear | ease | ease-in | ease-out | ease-in-out */
  transition: transform ease 0.8s;
} */
/* (F) FULLSCREEN MODE */
.gallery img.full {
  position: fixed;
  top: 0; left: 0; z-index: 999;
  width: 100vw; height: 100vh;
  object-fit: fit;
  background: rgba(0, 0, 0, 0.7);
}
.gallery img.full:hover {
  z-index: 999;
  transform: none;
}
.title {
font-size: 1.8em;
}
.text {
font-size: 1.25em;
}
/* .bg:before {
    content: "";
    position: relative;
    display: inline-block;
    width: 0; height: 100%;
    vertical-align: middle;
}
.top {
    display: inline-block;
    vertical-align: top;
}
.bt {
    display: inline-block;
    vertical-align: bottom;
}
*/
