/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, sans-serif;
    background-color: #fff; /* White background for the entire page */
    color: #333;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 30px;
    background-color: #222;
    color: #fff;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

.content-container {
    padding: 40px;
    background-color: #fff; /* White background for the content container */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1100px; /* Make sure it doesn't stretch too wide on large screens */
}

.top-image {
    text-align: center;
    margin-bottom: 30px;
}

.top-image img {
    max-width: 70%; /* Resize the image so it's not too large */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.main-content {
    padding: 30px; /* Add padding around the text */
    background-color: #f9f9f9; /* Light grey background for the text box */
    border-radius: 10px; /* Same rounded corners as the container */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.main-content h2 {
    font-size: 2rem;
    margin-top: 20px;
    margin-bottom: 15px;
}

.main-content h3 {
    font-size: 1.5rem;
    margin-top: 20px;
}

.main-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.8;
}

.main-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.main-content ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/*.main-content ul.nested li
{
	margin-bottom: 0px;
}*/

.main-content ol
{
	font-size:1.1rem;
	padding-left:30px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #fff;
}

footer p {
    font-size: 1rem;
}

/* Media Query for Mobile */
@media screen and (max-width: 768px) {
    .top-image img {
        max-width: 90%; /* Allow the image to be larger on smaller screens */
    }

    .content-container {
        padding: 20px; /* Reduce padding on small screens */
    }
}


.code-box {
            background-color: #2d2d2d;
            color: #f8f8f2;
            padding-left: 15px;
            border-radius: 8px;
            font-family: 'Courier New', Courier, monospace;
            /*white-space: pre-wrap; */ /* Allows wrapping of long lines */
            word-wrap: break-word;
            margin-bottom: 20px;
        }

.code-box{
}

.code-box p {
	font-size: 1.1rem;
}

.command-span {
    color: #80aaff; /* Light blue color */
}

.alert-span {
    color: #ff6f6f; /* Red */
}

.add-content-span
{
	color: #28a745; /*Green */
}

.tip-span
{
	color: #ffff99; /*Light yellow*/
}

.output-span
{
	color: #e6ffff;

}
