@font-face {
    font-family: 'Jersey10';
    src: url('Jersey10-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root { 
    --bg: #000934;
    --fg: #ffffff;
    --muted: #6b7280;
}

html,
body {
    height: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: var(--fg);
    
    height: 100%;
    margin: 0;
    background: radial-gradient(circle, rgb(8, 50, 73) 0%, rgb(7, 1, 23) 100%);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #ffffff;
}

#bubbleCanvas
{
    height: 100%;
    width:  100%;
    
    position: fixed;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(35, 130, 255, 0);
    color: white;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.navbar a 
{
    font-family: Jersey10;
    font-size: 3rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.navbar a:hover {
    text-decoration: underline;
}

.footer {
    position: fixed;
    bottom: 0.75rem;
    width: 80%;
    background: rgba(35, 130, 255, 0);
    color: white;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    z-index: 10;
    
    left: 50%;
    transform: translateX(-50%);
    
    justify-content: space-between;
    
    spaci
}

.footer a {
    font-family: Jersey10;
    font-size: 1.75rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

div svg {
    vertical-align: middle;
    /* aligns icon to text */
    width: 24px;
    /* optional size */
    height: 24px;
    margin-right: 8px;
    /* spacing between icon and text */
}

div a {
    vertical-align: middle;
    /* ensures text aligns with icon */
}