body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

canvas {
    display: block;
}

.text-overlay {
    position: fixed;
    top: calc(var(--overlay-top-proportion, 0.1) * 100vh);
    left: 50%;
    transform: translateX(-50%);
    
    background: #000;
    border: 1px solid var(--overlay-border-color, #fff);
    border-radius: 12px;
    
    padding: 16px 20px;
    max-width: 280px;
    width: calc(100vw - 40px);
    height: calc(var(--overlay-height-proportion, 0.4) * 100vh);
    
    color: white;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    
    overflow-y: auto;
    z-index: 100;
}

.text-overlay p:last-child {
    margin-bottom: 0;
}
