/* styles.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #0056b3;
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    color: #0056b3;
    margin-top: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

code {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
}

.step {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.step h3 {
    color: #007bff;
    margin-bottom: 10px;
}

.step p {
    margin-bottom: 10px;
}

.note {
    background-color: #fff3cd;
    border: 1px solid #ffecb3;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.code-block {
    background-color: #282c34;
    color: #abb2bf;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
}

.code-block pre {
    margin: 0;
}

.img-container {
    text-align: center;
    margin-bottom: 20px;
}

.img-container img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #777;
}