/* Website Overrides */
.button {
	background-color: #427fab;
}
.flexblock.features li img {
	width: 100%;
}
b,
strong {
	font-weight: 600;
	font-size: 32px;
	align-items: center;
	text-align: center;
}
pre {
	padding: 1.4rem;
	margin-bottom: 10px;
}
#navigation {
	opacity: 1;
}
#navigation a {
	color: #007fff;
	/* background-color: lawngreen; */
}
#counter a {
	color: #444444;
	background-color: rgb(245, 255, 236);
	padding: 10px;
	border: 1px solid #3af;
	border-radius: 5px;
}
hr {
	margin: 0.2rem auto;
}
h2 + hr,
h3 + hr {
	margin-bottom: 0.8rem;
}
.toc li {
	margin-bottom: 0.1rem;
} 

/* The Modal (background) */

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 999;
  /* Location of the box */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background: rgb(0, 0, 0);
  /* Fallback color */
  background: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}


/* Modal Content (image) */

.modal-content {
  margin: 0 auto;
  margin-top: 10%;
  display: block;
  width: 80%;
  max-width: 700px;
}


/* Caption of Modal Image */

#caption {
  margin: 0 auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}


/* Add Animation */

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

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


/* 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;
}


/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}
img {
    transition:transform 0.25s ease;
	z-index: 2;
}

img:hover {
    -webkit-transform:scale(1.5);
    transform:scale(1.5);
}