body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    /* color: #0f7ae3; */
    background-color: #6583a0;
    color: #fff;
}

.header {
    background-color: #333;
    color: #fff;
    padding: 1px;
    text-align: center;
    border-bottom: 4px solid #fff;
}

h4 {
    margin: 0;
}

#error {
    color: #fff;
    background-color: #f00;
    font-size: 20px;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    /* make it look like a warning */
    font-weight: bold;
    /* hide by default */
    display: none;
}

.textinput {
    width: 100%;
    resize: vertical;
    min-height: 100px;
    overflow: auto;
    color: #000;
    font-family: monospace;
    font-size: 12px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 2px solid black;
    background-color: #f9f9f9;
    /* huuuge drop shadow */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    text-align: left;
}

.canvascontainer {
    margin: 10px auto;
    max-width: 600px;

    display: flex;
    justify-content: center;
}

.container {
    margin: 10px auto;
    max-width: 600px;
    justify-content: center;
}

.infoField {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 10px;
    text-align: center;
}

.downloadButton {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 12px 24px;
    border: 1px solid #34a727;
    border-radius: 8px;
    background: #55ff40;
    background: -webkit-gradient(linear, left top, left bottom, from(#55ff40), to(#34a727));
    background: -moz-linear-gradient(top, #55ff40, #34a727);
    background: linear-gradient(to bottom, #55ff40, #34a727);
    text-shadow: #25771c 1px 1px 1px;
    font: normal normal bold 20px arial;
    color: #ffffff;
    text-decoration: none;
}
.downloadButton:hover,
.downloadButton:focus {
    border: 1px solid #4aee38;
    background: #66ff4d;
    background: -webkit-gradient(linear, left top, left bottom, from(#66ff4d), to(#3ec82f));
    background: -moz-linear-gradient(top, #66ff4d, #3ec82f);
    background: linear-gradient(to bottom, #66ff4d, #3ec82f);
    color: #ffffff;
    text-decoration: none;
}
.downloadButton:active {
    background: #34a727;
    background: -webkit-gradient(linear, left top, left bottom, from(#34a727), to(#34a727));
    background: -moz-linear-gradient(top, #34a727, #34a727);
    background: linear-gradient(to bottom, #34a727, #34a727);
}

/* Group box styling */
.group {
    margin: 30px;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
    border: 4px solid #fff;
    background-color: #333;
}
.group legend, .group-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 1px;
}
.group a {
    color: #5bc9ff;
}
.center {
    text-align: center;
}