body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

p {
    line-height: 1.5;
}

code {
    background-color: #f9f9f9;
    padding: 2px 4px;
    border-radius: 4px;
}

.gaussian-graph {
    text-align: center;
    margin-top: 20px;
}

.credits {
    text-align: right;
    padding: 10px;
}

.credits-content {
    max-width: 600px;
    margin: 0 auto;
}