
/* Grundopsætning */
body {
    margin: 0;
    font-family: 'Impact', sans-serif;
    background-color: #111;
    color: #eee;
}

/* Hero-sektion */
.hero {
    position: relative;
    z-index: 1;
    background: #000 url('images/feacrew_bg.jpg') center center no-repeat;
    background-size: contain;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px #000;
    overflow: hidden;                       /* Så canvas ikke stikker ud */
}

#c {
    position: absolute;                     /* Canvas ovenpå */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;                   /* Så musen går igennem */
    z-index: 10;                            /* Ovenpå alt i hero */
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
}

.hero p {
    font-size: 1.5rem;
}
