/* static/styles.css */
body {
    background-color: #2d2d2d;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    text-align: center;
}
a {
    color: #1e90ff;
    text-decoration: none;
    margin: 10px;
}
a:hover {
    text-decoration: underline;
}
pre {
    background-color: #3d3d3d;
    padding: 10px;
    border-radius: 5px;
}