@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

body {
    font-family: 'Space Mono', monospace;
    transition: background-color 0.5s;
}

#background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    opacity: 0.05;
    line-height: 1;
}
#background-overlay div {
    padding-bottom: 2px;
}

#glitch-text, #upload-container, .max-w-sm, #navigation {
    position: relative;
    z-index: 10;
}

#terminal-output {
    min-height: 2em;
    line-height: 1.5;
}

.action-button {
    text-decoration: none;
    background: none;
    border: none;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
}
.action-button:hover {
    color: var(--success_text);
}

.nav-link {
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

.nav-link:hover {
    transform: scale(1.1);
}

.theme-main-color {
    color: var(--main_text);
}

.theme-error-color {
    color: var(--error_text);
}

.theme-dark-color {
    color: var(--dark_text)
}

.theme-success-color {
    color: var(--success_text)
}