* {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    box-sizing: border-box;
}
body {
    color: #303030;
    background: #F5F5F5;
}
h1 {
    color: #333;
    font-weight: normal;
    text-align: center;
}
h1 img {
    width: 150px;
}
.main-container {
    width: 800px;
    margin: 0 auto;
    overflow: auto; /* break floats */
    padding-top: 20px;
    padding-bottom: 20px;
    background: white;
    border-radius: 4px;
}
.parameter-container {
    float: left;
    width: 400px;
}
.content-container {
    float: right;
    width: 400px;
    padding-top: 20px; /* Magic number for the label height in the left frame */
    text-align: center;
}
.qr-container {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 auto;
    width: 800px;
    text-align: center;
}
iframe {;
    border: none;
    background: white;
    box-shadow: 0 0 15px #888;
}
.row {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 14px;
}
button, input, select {
    outline: none;
    width: 100%;
    border-radius: 4px;
    padding: 14px;
    background: #F5F8F9;
}
label {
    color: #999;
}
input {
    border: 1px solid transparent;
}
select {
    background-color: white;
    border: 0;
}
input[type=checkbox], input[type=radio] {
    vertical-align: middle;
    position: relative;
    bottom: 1px;
    width: auto;
}
button {
    font-size: 14px;
    color: white;
    background-color: #A5D7D8;
    border: none;
}
button:hover {
    background-color: #84ACAC;
}
button:active {
    transform: scale(0.95);
}
