body {
    font-family: "Helvetica Neue", "Helvetica", sans-serif;
    background: #222;
    background: linear-gradient(20deg, #FC466B 0%, #3F5EFB 100%);
}

h1, h2, h3, p, a {
    color: #fff;
}

h1, h2, h3 {
    text-shadow: rgba(0, 0, 0, 0.2) 1px 0 3px;
}

main {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

.title h2 {
    margin-bottom: 5px;

}
.title h1 {
    margin-top: 0;
}

.ticket {
    margin-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transform: rotate(.5deg);
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
}

.ticket img {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: -3px;
}

.ticket .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-touch-callout: none;
    cursor: default;
}

.ticket .overlay span {
    font-family: "Menlo", monospace;
    text-transform: uppercase;
    font-size: 60px;
    color: rgba(250, 0, 0, 0.9);
}

.ticket-info, .ticket-info-concealed {
    background-color: #222;
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 10px;
}

.ticket-info {
    color: #fff;
    font-family: "Menlo", monospace;
    font-size: 12px;
}

.ticket-info p {
    color: #aaa;
}

.ticket-info-concealed {
    background-image: url(../blur.jpg);
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.form-box {
    padding: 0 14px;
    box-shadow: 0 0 40px rgba(246, 111, 181, 0.7);
    background-color: rgba(246, 111, 181, 0.5);
    border-radius: 6px;
    text-align: center;
}

.form-box input[type=text] {
    display: block;
    margin: 10px auto;
    font-family: "Menlo", monospace;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #aaa;
    font-size: 18px;
}

.form-box input[type=submit] {
    -webkit-appearance: none;
    display: block;
    margin: 10px auto;
    font-family: "Helvetica Neue", "Helvetica", sans-serif;
    font-weight: bold;
    border: none;
    background-color: #F8F272;
    border-bottom: 3px solid #DDC67B;
    color: #D35596;
    font-size: 18px;
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    width: 100%;
}