/* Terminal styled background and font */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    color: #ffffff;
    font-family: "Monospace", "Courier New", monospace;
    overflow: hidden;
}

.overlay {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: #000;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index: 10;
}

.container {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding: 20px;
    text-align: center;
}

#ascii-title {
    font-family: "Monospace", "Courier New", monospace;
    font-size: 16px;
    white-space: pre;
}

#profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 20px 0;
}

.links {
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.links a {
    color:#ffffff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 5px 10px;
    transition: all 0.2s;
}

.links a:hover {
    background-color: #fff;
    color: #000;
}

.pgp-section {
    margin-top: 20px;
}

.audio-controls {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display:flex;
    gap:10px;
    align-items:center;
}

input[type=range] {
    width:100px;
}

/* Canvas for snow */
#snow-canvas {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events: none;
    z-index: 0;
}
