body {
    margin: 0;
    padding: 0;
    background-color: #2f2f2f;
    color: #c4c4c4;
}

input, select {
    background-color: #10111b;
    color: #ffffff;
    border: 4px solid #10111b;
    padding-left: 5px;
    border-radius: 2px;
}

#container {
    overflow: hidden;
    position: relative;
    width: 1024px;
    height: 768px;
}

#textElement {
    position: absolute;
    font-size: 14px;
    font-family: Tahoma, Verdana;
    z-index: 1;
}

#textElement.drag {
    cursor: move;
    border: 1px solid white;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#textElement.editable {
    cursor: text;
}

.resultCode {
    border: 1px solid #ffffff;
    padding: 5px 20px;
    overflow: hidden;
}

#result {
	padding: 0 5px 0 10px;
	margin-right: 5px;
	border: 4px solid #1a1a1a;
}

.message {
	padding-left: 10px;
	padding-bottom: 5px;
}

.size {
	padding-left: 10px;
	padding-top: 5px;
}

.copy {
	display: inline-flex;
	padding-bottom: 5px;
}