



div.col-1-1 {width: 100%;}
div.col-1-2 {width: 50%;}
div.col-1-3 {width: 33.33%;}
div.col-2-3 {width: 66.67%;}
div.col-1-4 {width: 25%;}
div.col-3-4 {width: 75%;}


body > div.row > div.col-1-3> a> img {
  float: auto;
  clear:both;
  width: 200px;
  z-index:2;
}




nav.horizontal {
  overflow: hidden;
  background-color: #333;
  font-family: Arial, Helvetica, sans-serif;
}

nav.horizontal  a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  cursor: pointer;
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

nav.horizontal  a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.hamburger {
  display:none;	
}

.squareImg {
  float: left;
  width: 30.33%;          /* 3 squares (some space left for margins) */
  margin-right: 2%;       /* gap between squares */
  box-sizing: border-box;
  position: relative;
  height: 0;
  padding-bottom: 30.33%; /* Makes squares! */
  border-radius: 10px;
  box-shadow: 0 2px 8px #0002;
  background: #eee;
  overflow: hidden;
}



.flexRow {
  display: flex;
  gap: 10%;
}
.flexRow > a {
  flex: 1 1 30%;   /* 2 elements, each about half the width */
  position: relative;
  box-sizing: border-box;
    aspect-ratio: 1/1; /* Ensures the box has height */
  display: block;     /* Ensures <a> is a block element */
  overflow: hidden;
  text-decoration: none; /* Removes underline from link */
}


/* Styles for image and header inside 'a' */
.flexRow > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}
.flexRow> a > h1 {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 32px #fff;
  text-align: center;
  pointer-events: none;
  margin: 0;
}