body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    overflow-y: auto;
    overflow-x: hidden;
    background: url('/lines-alpha-anim.gif') repeat;
    color: #fff;
}

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header {
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #fff;
    background-color: #333;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #555;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    margin-top: 20px;
}

.library {
    width: 100%;
}

.library-section {
    margin-bottom: 20px;
}

.library-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff0000;
}

.library-section ul {
    list-style-type: none;
    padding-left: 20px;
}

.library-section ul li {
    margin-bottom: 10px; 
}

.library-section ul li a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s;
}

.library-section ul li a:hover {
    color: #ff00ff; 
}

.library-section ul li p.description {
    font-size: 12px;
    color: #ccc;
    margin: 2px 0 0 0;
    padding-left: 10px;
}
