:root {
    --primary: #00ff00;
    --secondary: white;
    --background: #1f1f1f;
}

* {
    margin: 0;
    padding: 0;
    font-family: monospace;
}

body {
    background-color: var(--background);
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.container {
    padding: 100px;
}

input {
    background-color: inherit;
    border: none;
    outline: none;
    color: white;
    font-size: 3rem;
    padding-left: 5px;
}

a {
    text-decoration: none;
    color: white;
}

.text {
    font-size: 3rem;
    margin-right: 5px;
}

.file-button {
    cursor: pointer;
}

.bold {
    font-weight: bold;
}

.green {
    color: var(--primary);
}

.white {
    color: var(--secondary);
    font-weight: normal;
}

.dir {
    color: #1e78e4;
}

.hidden {
    display: none;
}
