md-block {
    color: #ccc;
}

h2 {
    margin-top: 0.5rem;
}

body {
    font-size: 1em;
    /* currently ems cause chrome bug misinterpreting rems on body element */
    line-height: 1.6;
    font-weight: 400;
    font-family: Ubuntu, "times new roman", times, roman, serif;
    color: #222;

    background-image: url("/images/lnx/background.jpg");
    background-color: #cccccc;
}

canvas {
    border: 1px solid red;
}

.box {
    background-color: rgba(.8, 0, 0, .8);
    border-color: #ccc;
    border-width: .25em;
    border-style: solid;
    color: #fff;
}

#result {
    margin-top: 1em;
    display: none;
}

#htmltoimage {
    width: 65%;
    margin: auto;
}

.search-box {
    margin-top: 1rem;
}

.container .box {
    padding: 1rem 1rem 1rem;
}

.result {
    margin-top: 1rem;
}

.buttons {
    margin-top: 10px;
}

.list-group-item {
    margin-top: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.24);
}

.rotate90 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate180 {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rotate270 {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}