:root{
    --background: #262627;
    --text: #e1effa;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    background: var(--background);
    color: var(--text);
    padding: 0;
    margin: 0;
}

#backgroundCanvas {
    height: 100%;
    width: 100%;
    /* display: flex; */
    /* position: absolute; */
    border-radius: 8px;
    opacity: 0.3;
}

#background {
    background-color: var(--background);
    border-color: var(--text);
    border-style: solid;
    border-width: 2px;
    border-radius: 8px;
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    z-index: -1;
}

#foreground{
    margin: 8px;
    width: 320px;
}

.contact h1 {
    margin-top: 0;
    text-align: center;
}

.section {
    border: 1px solid var(--text);
    background-color: var(--background);
    border-radius: 4px;
    padding: 16px;
}