#mainHeader {
  color: navy;
}


.innerDiv {
  margin-top: 20px;
  margin-bottom: 20px;
}
.backgroundImage {
  Position:fixed;
  Top: 0;
  Bottom: 0;
  Width: 100vh;
  
  Opacity: 0.5;
  Z-index: -5000;
}

#background {
  Width:100vw;
  
  }

  .center {
    text-align: center;
  }

.grid-picture{
  height: auto;
  max-width: 300px;
}

.grid-container {
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(auto-fit, 300px);
	grid-template-rows: auto;
	place-items: center;
	align-items: center;
  justify-content: space-evenly;
	padding-top: 20px;
}


