@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono:wght@400&display=swap');

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
    overflow: hidden;
    background-color: #FFFFFF;
}

#main-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#ascii-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ascii-container {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px;
    line-height: 0.8;
    letter-spacing: -0.5px;
    white-space: pre;
    text-align: center;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    color: #11FF00;
}

@media (min-width: 768px) {
    #ascii-container {
        font-size: 6px;
    }
}

@media (min-width: 1200px) {
    #ascii-container {
        font-size: 5px;
    }
}

#cv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;

    pointer-events: none;
}

#cv-container {
    font-family: Arial, sans-serif;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    pointer-events: auto;
    text-align: left;
}

#cv-container::-webkit-scrollbar {
    width: 20px;
}

#cv-container::-webkit-scrollbar-track {
    background: transparent;
}

#cv-container::-webkit-scrollbar-thumb {
    background-image: url('fish.svg');
    background-size: contain;
    background-repeat: repeat-y;
    background-position: center;
    border-radius: 0;
}

.cv-header {
    color: #0026FF;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cv-entry {
    color: #000000;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    #cv-container {
        padding: 20px;
        max-width: 90vw;
    }
    
    .cv-header {
        font-size: 14px;
    }
    
    .cv-entry {
        font-size: 12px;
    }
}