 * {
  box-sizing: border-box;
}

/* Clear floats after the columns */
.row {
    display: flex; /*table;*/
    /* clear: both; */
    flex-wrap: wrap;
    /* padding-left: 10%; */
    /* padding-right: 10%; */
}

/* Create three equal columns that floats next to each other */
.column {
  /* float: left; */
  /* width: 30%; */
  padding-left: 25%;
  padding-right: 25%;
  flex: 50%;
}

.column2 {
    /* float: left; */
    /* width: 70%; */
    flex: 50%;
    padding: 25px;
    margin-top: 10px;
    border: 1px solid grey;
}

.column0 {
    flex: 100%;
}
/* On screens that are 992px wide or less, go from four columns to two columns */
/* @media screen and (max-width: 700px) { */
/*   .column { */
/*       flex: 50%; */
/*   } */
/*   .column2 { */
/*       flex: 50%; */
/*   } */
/* } */

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }
}

.timestamp {
    font-size: 12px;
    /* font-size: 1vw; */
    font-family: "Lucida Console", Courier, monospace;
    font-weight:  bold;
    color: black;
    float: right;
}

.timestamp-wrapper {
    
}

.title {
    text-align: center;
    letter-spacing: 3px;
    font-family: "Lucida Console", Courier, monospace;
    font-weight: bold;
    color: black;
    /* font-size: 5vw; */
}

a {
    font-family: "Lucida Console", Courier, monospace;
    color: black;
    font-size: 12px;
}

h2, h3, h4 {
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: monospace;
    color: black;
    /* font-size: 32px; font-size: 2vw; */
}

h2 {
    /* font-size: 2vw; */
}

h3 {
    /* font-size: 1.75vw; */
}

h4, dt {
    font-family: "Lucid Cosole", Courier, monospace;
    /* font-size: 1.5vw; /\*18px;*\/     */
}

li, dd {
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    font-size: 18px;
}

p {
    font-family: Arial, Helvetica, sans-serif;
   /* font-size: 1.25vw;*/
}

li {
    font-family: "Lucid Cosole", Courier, monospace;
    padding-bottom: 2.5%;
}
#text-table-of-contents {
     
}

.outline-2 {
    /* entry outline: timestamp and post */
    border-bottom: 1px dashed black
}

.outline-text-2 {
/* just the post itself */
}

#table-of-contents > h2:first-child {
    /* visibility: hidden;
    display: none; */
    text-align: center;
    font-family: "Lucida Console", Courier, monospace;
    font-weight: bold;
    /* font-size: 1.25vw; */
}

#table-of-contents {
    border: 1px solid grey;
    padding-right: 5%;
    display: none;
}

#toggle {
    border: 1px solid grey;
    padding: 2%;
    margin-top: 1%;
    float: left;
    text-align: center;
    text-decoration: underline;
    margin-bottom: 1%;
}

pre.src {
    /* padding-top: 5%; */
    white-space: wrap;
    overflow: scroll;
}

pre.src:before {
    margin: 2%;
}

