body {
    background-color: #f5f5f5;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.container {
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.section {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
}

pre {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;   /* Added this line */
    white-space: nowrap; /* Added this line */
}

a {
    color: #337ab7;
    text-decoration: none;
}
