body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #ff6f61, #de83f5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    color: white;
}

.container {
    text-align: center;
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
}

.header p {
    font-size: 1.2em;
    margin-bottom: 2em;
}

.main-content {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.file-explorer {
    text-align: left;
}

.file-explorer h2 {
    color: #ff6f61;
    margin-top: 0;
}

.file-explorer h3 {
    margin-top: 20px;
}

.directory-list, .file-list {
    list-style-type: none;
    padding: 0;
}

.directory-item, .file-item {
    margin: 10px 0;
}

.directory-item a, .file-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.directory-item a:hover, .file-item a:hover {
    color: #ff6f61;
}

.footer {
    margin-top: 2em;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}
