html, body {
    font-family: sans-serif;
    background-color: maroon;
}


#container {
    display: flex;
    margin-bottom: 5px;
    margin-top: 5px;
}

#editor {
    width: 640px;
    height: 600px;
    border: 1px solid grey;
    background-color: lavender;
}

#log {
    height: 420px;
    min-width: 400px;
    max-width: 500px;
    margin: 0 0 0 10px;
    border: 1px solid gray;
    background-color: ghostwhite;

    padding: 10px;
    overflow: auto;
    white-space: pre-wrap;
}

footer {
    padding-top: 1em;
}
button:hover {
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.24);
}

.button:hover {
    border-radius: 8px;
    box-shadow: 0px 2px 2px 2px rgba(0,0,0,0.24);
}

.button  {
    border-radius: 8px;
 //   box-shadow: 0px 2px 2px 2px rgba(0,0,0,0.2);
    font-size:16px;
}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #111111;
}

li {
    float: right;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
}

li a:hover {
    background-color: #333333;
}


/* Create two equal columns that floats next to each other */
.column {
    float:left;
    width: 50%;
//    padding: 10px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */
@media screen and (max-width: 1000px) {
    .column {
        width: 100%;
    }
}
#container2 {
    display: flex;
    margin-bottom: 5px;
    margin-top: 5px;
}

#editor2 {
    width: 640px; 
    height: 600px;
//    min-width: 400px;
//    max-width: 640px;
    border: 1px solid grey;
    background-color: lavender;
}

#log2 {
    height: 420px;
    min-width: 400px;
    max-width: 500px;
    margin: 20px 0 0 10px;
    border: 1px solid gray;
    background-color: ghostwhite;

    padding: 10px;
    overflow: auto;
    white-space: pre-wrap;
}

#targets {
    font-size: x-small;
}


.inputfile {
   width: 0.1px;
   height: 0.1px;
   opacity: 0;
   overflow: hidden;
   position: absolute;
   z-index: -1;
}

.inputfile + label {
    appearance: button;
    -moz-appearance: button;
    -webkit-appearance: button;
    text-align: center;
    padding: 1px 1px 1px;
    border: 2px outset buttonface;
    font: 13.3333px Arial;
}

.inputfile:focus + label,
.inputfile + label:hover {
    background-color: none;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.24);
}

.inputfile + label {
 cursor: arrow;
}

.content {
    max-width: 700px;
    margin: auto;
    background: maroon;
    padding: 10px;
}
