body {
    font-family: 'Open Sans', sans-serif;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.content {
    margin-top: 20px;
}

.sectionImage {
    max-width: 100%;
    height: auto;
}

.sectionVideo {
    display: block;
    margin: 0 auto; /* Center the video horizontally */
}

.video-container {
    display: flex;
    justify-content: center; /* Center the video horizontally */
}

.code-box {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
    font-family: "Courier New", Courier, monospace;
    text-align: left; /* Ensure the text is left-aligned */
}

.code-box pre {
    white-space: pre-wrap;
    margin: 0; /* Remove default margin from pre */
    padding: 0; /* Remove default padding from pre */
    text-align: left; /* Ensure pre content is left-aligned */
}

.code-box code {
    display: block; /* Ensure code block fills the container */
    margin: 0; /* Remove default margin from code */
    padding: 0; /* Remove default padding from code */
    text-align: left; /* Ensure code content is left-aligned */
}

.code-box .comment {
    color: green;
}

.code-box .keyword {
    color: blue;
}

.code-box .code {
    color: black;
}

/* Adjust the width for smaller screens */
@media screeen and (max-width: 1200px) {
    .sectionVideo {
        width: 90%;
    }
    .sectionImage {
        width: 90%;
    }
}