main { min-height: 90vh; }
.grid-container { max-width: 99%; grid-template-columns: 40% 60%; margin-left: 0px; }
aside {
  min-height: 100vh;
  background-image: url("/media/original/city_both-scaled.jpg");
  background-size: cover;
  background-position: center;
  padding-left: 15% !important;
  padding-right: 15% !important;
}
aside header .logo a, aside nav a { color: #FFF !important; }
aside header .logo { margin-top: 50px; margin-bottom: 50px; }
aside header .logo p { text-align: center; }
aside header a { font-size: 2.3em !important; font-weight: 500 !important; }
aside nav ul.mainnavigation > li > a { 
  font-size: 1.2em;
  text-align: center;
  border-bottom: 2px solid #FFF;
  padding-top: 20px;
  padding-bottom: 20px;
}
aside nav ul.mainnavigation > li > ul > li > a { text-align: center; }
article { font-size: 0.9em; padding-left: 15%; padding-right: 15%; }
h1, h2, h3 { color: #002D64; }
.expander { display: none; }

footer { background: transparent; color: #FFF; text-align: center; margin-top: 60px; }
footer a { color: #FFF; }
dt { font-weight: bold; color: #002D64; }


/* Style the Image Used to Trigger the Modal */
main .grid-main article img {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

main .grid-main article img:hover {opacity: 0.7;}

#search .searchContainer {
  color: #FFF;
  margin-bottom: 15px;
}

#search .searchContainer input {
  border: none;
  border-bottom: 1px solid #FFF;
  background: transparent;
}

::placeholder,
::-ms-input-placeholder,
::-webkit-input-placeholder  {
  color: #FFF;
  opacity: 1; /* Firefox */
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* Modal Content (Image) */
.modal-content {
  display: block;
  width: 80%;
  max-width: 700px;
  margin: auto;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
  margin: auto;
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Add Animation */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

/* Responsive Image Width */
@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}