input {
    font-size: 40px;
}

div.block {
    margin-top: 10px;
    background: white;
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

div.block.red, .red {
    background: red;
}
div.block.green, .green {
    background: green;
}
div.block.blue, .blue {
    background: blue;
}

ul.inline li {
    display: inline;
}

ul.unstyled>li {
    list-style: none;
}

input[type='checkbox']{
    -ms-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    width: 25px;
    height: 25px;
}

[contenteditable] {
    margin-bottom: 5px;
}
[contenteditable]:focus {
    border: 5px solid #FF851B;
    outline: none;
}

.hero {
    width: auto;
    height: 30%;
    display: none;
}

img.hero-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
}

img.hero-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

img.hero-top-left {
    position: absolute;
    top: -3px;
    left: 0;
}

img.hero-top-right {
    position: absolute;
    top: -3px;
    right: 40px;
}

.show {
    display: block;
}

