html {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

/* Dark Mode Only */
body {
    background-color: #0d0d0d;
    color: #00ff41; /* Classic Terminal Green */
    font-family: "Courier New", Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.raw-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 1px solid #333;
    padding: 40px;
    background-color: #000;
}

h1, h2, h3 {
    font-weight: normal;
    text-transform: uppercase;
}

hr {
    border: 0;
    border-top: 1px dashed #00ff41;
    margin: 20px 0;
}

.app-list {
    text-align: left; /* Aligns text inside the centered container for readability */
    display: inline-block;
}

.app-entry {
    margin-bottom: 30px;
}

a {
    color: #00ff41;
    text-decoration: none;
}

    a:hover {
        background-color: #00ff41;
        color: #000;
    }

nav {
    margin-top: 5px;
    font-size: 0.9em;
}