body {
    margin: 0px;
    padding: 0px;
}

canvas {
    width: 100vw;
    height: 100vh;

    position: fixed;
    top: 0px;
    left: 0px;

    z-index: -1;
}

img { align-self: center; }
h2 { text-align: center; }
a { color: aqua; }

code {
    font-weight: bolder;
    
    background-color: #1f1212c5;
    border-radius: 2px;

    padding: 4px;
}

.main {
    background-color: #00000080;
    color: aliceblue;

    font-family: monospace;
    display: block;

    /* I can't remember how to center with margin so go go gadget other center*/
    margin: 16px 0px 16px 50%;
    padding: 10px;
    
    transform: translate(-50%, 0%);

    min-height: calc(100vh - 52px);
    width:100%;
    min-width: 396px;
    max-width: 700px;

    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;

    border-radius: 16px;
}

.italian { font-style: italic; }