body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    text-align: center; /* Center align the container */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    text-align: left; /* Left-align the text inside the container */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    text-align: center; /* Keep the header centered */
}

.code-box {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

p {
    font-size: 18px;
    color: #555;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    text-align: center; /* Center-align the links */
}

a {
    text-decoration: none;
    font-size: 20px;
    color: white;
    background-color: #007bff;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

a:hover {
    background-color: #0056b3;
}

pre {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    font-family: "Courier New", monospace;
    overflow-x: auto;
    white-space: pre-wrap; /* Ensures long code lines wrap */
}

code {
    display: block;
    white-space: pre;
    font-family: "Courier New", monospace;
}
