body {
    background-color: #f6f6f6;
    background-attachment: fixed;
    font-family: 'Quicksand', sans-serif;
}

#content {
    max-width: 1100px;
    margin: 30px auto;
}

.text-center {
    text-align: center;
}

h1 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

h2 {
    font-size: 18px;
}

.separator {
    background: #f0f0f0;
    width: 30px;
    height: 2px;
    margin: 0 auto;
}

ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #cecece;
    padding: 20px;
}

input[type=text], input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    outline: none;
}

textarea {
    resize: none;
}

button[type=submit] {
    background-color: #525252;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

button[type=submit]:hover {
    background-color: #000;
}
.canvas-section {

}
.show-canvas {
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
    resize: vertical;
    height: 200px;
    cursor: crosshair;
}
#canvas {
    width: 100%;
    height: 200px;
    cursor: crosshair;
}
.canvas-bottom {
    text-align: center;
    border: 1px solid #f0f0f0;
    padding: 15px 0 10px 0;
    margin-bottom: 20px;
}
.btn {
    border-radius: 4px;
    border: none;
    cursor: pointer;
    padding: 10px;
    outline: none;
}
.btn-reset {
    background: transparent;
    color: #c1c1c1;
}
.btn-save {
    background: transparent;
    color: #848484;
}
.alert {
    padding: 10px;
    text-align: center;
    margin-bottom: 15px;
    max-width: 520px;
    margin: 15px auto;
    border-radius: 4px;
    color: #fff;
    position: relative;
}
.alert span {
    position: absolute;
    right: 8px;
    cursor: pointer;
    font-size: 19px;
}
.alert-success {
    background: #3cad3f;
}
.alert-error {
    background: #ad3131;
}

@media (max-width: 414px) {
    body {
        background-image: none !important;
    }
}