@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200;0,400;1,400&display=swap');

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    line-height: 1.6;
}
body {
    border: 0px;
    margin: 0px;
    padding: 0px;
    color: black;
    background-color: white;
}
#container {
    width: 1200px;
    margin: 0px auto;
    background-color: white;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Code Pro', monospace;
    letter-spacing: .1em;
}
h2, h3, h4, h5, h6 {
    margin: 2em 0px 1.4em 0px;
}
h1 {
    font-size: 50px;
    font-weight: 200;
    border-bottom: 2px dashed #c0c0c0;
    padding: 30px 20px 0px 20px;
}
h2 {
    font-size: x-large;
    font-weight: 300;
}
h3 {
    font-size: large;
    font-weight: 400;
}
h4 {
    font-size: medium;
    font-weight: 500;
}
h5 {
    font-size: small;
    font-weight: 600;
}
h6 {
    font-size: x-small;
    font-weight: 700;
}

div.props a,
pre {
    font-family: 'Source Code Pro', monospace;
    font-size: 16px;
    /* overflow-x: auto; */
    /* overflow-y: visible; */
}
a[href] {
    color: black;
    font-style: oblique;
    text-decoration: none;
}
a[href]:hover {
    text-decoration: underline solid black;
}
@media screen and (max-width: 1220px) {
    body {
	background-color: white;
        background-image: none;
    }
    #container {
	max-width: 100%;
	margin: 0px;
	border: 0px;
        -webkit-box-shadow: none;
        -moz-box-shadow: node;
        box-shadow: none;
    }
}

.hash {
    font-weight: bold;
}


/*
#data {
    padding-bottom: 60em;
}
*/

div.footer {
    margin-top: 2em;
    padding-top: .6em;
    border-top: 2px dashed #c0c0c0;
}

div.rows {
    display: flex;
    max-with: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.rows figure {
    flex-grow: 1;
}

div.rows p {
    width: 132px;
    text-align: center;
}

div.rows img {
    border: 1px dashed #d0d0d0;
}

div.rows figcaption {
    text-align: center;
    max-width: 132px;
}

div.props {
    margin: 0px 0px 0px 2em;
    border-left: 6px dotted grey;
    padding-left: 2em;
}

div.props a {
    padding-left: .5em;
}

div.top {
    margin-bottom: 3em;
}

table {
    padding: .5em;
    margin: 1em auto;
    border-collapse: collapse;
    border-spacing: 2em;
}
th,
td {
    border: 1px solid grey;
    padding: .5em;
    vertical-align: top;
}

td.right {
    text-align: right;
}


/*
#overview {
    margin: 30px 20px 0px 20px;
}
*/

div.columns {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 0px;
  -moz-column-gap: 0px;
  column-gap: 20px;
  -webkit-column-width: 400px;
  -moz-column-width: 400px;
  column-width: 400px;
  padding: 1em 0px;
}
div.block {
  /* break-inside: avoid-column; */
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;

  margin-bottom: 20px;
  max-width: 100%;
}

div.block img {
    max-width: 100%;
}

div.lnbrk {
    white-space: pre-line;
    padding: 1em;
    border: 1px solid grey;
}

.site, .person {
    padding: 1em;
    border: 1px solid grey;
}

div.subject {
    border: 2px solid black;
}

button.current {
    color: white;
    background-color: black;
}


/***************************************************************/


div.block img:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 30px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: black;
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  max-width: 1200px;
}

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

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

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

@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%;
  }
}

figure {
    padding: 0px;
    margin: 0px 0px 20px 0px;
    border: 1px solid grey;
}

figure img {
    padding: 4px 4px 0px 4px;
}

figcaption {
    text-align: center;
}

 
@media screen and (max-width: 1240px) {
    #container {
       padding: 0px 20px;
    }
}
  
