@import url('https://fonts.googleapis.com/css2?family=Jacquard+24&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+10&display=swap');
@font-face {
    font-family: FaceOnFire;
    src: url('/static/fonts/pixelfaceonfire.ttf');
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#mainHeader {
    color: hsl(260, 70%, 30%);
    -webkit-text-stroke: 1px #d8b2ff;
}

.form-label {
    font-family: 'Jersey 10', sans-serif;
    font-size: 2em;
}

.entry {
    font-size: 1.5em;
}

.submit {
    background-color: #9257bd;
    color: white;
    border: none;
    padding: 0.6rem 4rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 0.25rem;
    box-shadow: 0 0 10px rgba(145, 123, 185, 0.5);
    transition: box-shadow 0.3s, transform 0.2s;
    position: relative;
}

.submit:hover {
    box-shadow: 0 0 20px rgba(145, 123, 185, 0.5);
    transform: translateY(-2px);
}

.space {
    margin-bottom: 100vh;
}

input.form-control,
textarea.form-control {
    font-family: 'Jersey 10', sans-serif;
    border-radius: 0;
}

input.form-control:focus,
textarea.form-control:focus {
    border-color: #9769b8;
    box-shadow: 0 0 8px #9769b8;
    outline: none;
}

input.form-control {
    font-size: 20px !important;
}

textarea.form-control {
    font-size: 20px !important;
    height: 100px;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}

h1.header {
    font-family: FaceOnFire;
    font-size: 10rem;
    font-weight: 900;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: black;
    color: white;
    font-family: 'Jacquard 24', system-ui;
    overflow-x: hidden;
}

main {
    margin-top: 25vh;
    padding: 20px;
}

h1 {
    font-size: 10rem;
    font-weight: 900;
}

h2 {
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 2vh;
}

canvas#canvas {
    border: 1px solid white;
    cursor: crosshair;
}

img {
    max-width: 300px;
    display: block;
    margin-top: 5px;
}