body {
    background-color: #1e1e1e;
    color: #dcdcdc;
    font-family: monospace;
    padding: 20px;
}

.terminal {
    border: 1px solid #444;
    padding: 15px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #000;
    box-shadow: 0 0 15px #333;
    border-radius: 5px;
}

h1 {
    color: #00ff00;
    text-align: center;
}

.folder, .file {
    cursor: pointer;
    margin: 10px 0;
    padding: 5px;
    border-radius: 3px;
    display: left;
    justify-content: space-between;
    position: relative;
}

.folder-content {
    margin-left: 20px; 
}



.folder:hover, .file:hover {
    background-color: #2e2e2e;
}

.folder-icon, .file-icon {
    margin-right: 10px;
}

a {
    text-decoration: none;
    color: #00afff;
}

a:hover {
    text-decoration: underline;
}

.description {
    color: #999;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-left: 20px;
}