body {
    background-color: #000;
    color: #00ff00;
    font-family: monospace;
    padding: 20px;
}

.console {
    height: 250px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 2px solid #00ff00;
    background-color: #212121;
    padding: 10px;
    max-width: 400px;
    border-radius: 10px;
}

.app {
    display: flex;
    align-items: center;
    white-space: nowrap;
    opacity: 0;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.apps {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px;
    border-radius: 10px;
}

.prompt {
    color: white;
    padding-right: 5px;
}

h1 {
    color: white;
}

a {
    color: #00ff00;
    /* text-decoration: none; */
}

a:hover {
    text-decoration: underline;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background-color: #00ff00;
    margin-left: 4px;
    animation: blink 0.5s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 2em;
    display: flex;
    justify-content: space-between;
}