body {
    font-family: Helvetica, sans-serif;
	justify-content: center;
	align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #CFE6EC;
	
}

.watermarkimg {
  display: block;
  margin: auto;
  height: 75%;
  padding-top: 25%;
}


.headerbar {
  overflow: hidden;
  background-color: #1C8EEF;
  text-align: center;
  padding: 10px;
  color: #FFFFFF;
  font-weight: bold;
}

.filtermenu {
  display: none;
  overflow: hidden;
  background-color: #000000;
  text-align: center;
  padding: 10px;
  color: #FFFFFF;
  font-weight: bold;
}

.header-right {
  float: right;
  z-index: 50;
}

.menuicon {
	height: 17px;
}


.grid-container {
  display: grid;
  grid-template-columns: auto auto;
  padding: 10px;
}
.grid-container div {
  padding: 20px;
  font-size: 30px;
  text-align: center;
}

.grid-container img {
    width: 100%; /* Image takes full width of grid item */
    height: 100%; /* Image takes full height of grid item */
    object-fit: cover; /* or contain, fill, etc., to control how image fits */
    display: block; /* Removes extra space below image */
}


/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #1C8EEF;
  text-align: center;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the content */
.content {
  padding: 10px;
  height: 200px; /* Should be removed. Only for demonstration */
}

/* Style the footer */
.footer {
  background-color: #f1f1f1;
  padding: 10px;
}

