/* Canvas layers */

#surface {
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: black;
    cursor: pointer;
}

/* Content */

#content {
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    padding: 1em;
    min-width: 18em;
    max-width: 24em;
    pointer-events: none;
}

#content > * {
    margin-bottom: 1em;
    padding: 1em;
    background-color: #252525;
    opacity: 0.75;
    font-weight: bold;
    color: white;
}

/* Header box and stuff inside */

#header > * {
    color: inherit;
}

#title {
    font-size: 2em;
    margin: 0 0 0.5em 0;
}

#subtitle {
    font-size: 1em;
    margin: 0;
}

#email {
    pointer-events: all;
}

#email:hover {
    color: lightyellow;
    text-decoration: underline;
}

/* Links and buttons */

#content > a {
    pointer-events: all;
}

#content > a:hover {
    background-color: #404040;
    opacity: 0.9;
}

/* Other */

a {
    text-decoration: none;
}

::selection {
    background: transparent;
}
