body {
    background-color: navy;
    color: white;
    margin: 10px;
    padding: 10px;
}

h2 {
    text-align: center;
    font: 1.5em sans-serif;
    text-decoration: underline;
    color: darkslategray;
    
}

h3 {
    text-align: left;
    font: 1.2em sans-serif;
    padding: 10px;
    color: blueviolet;
    margin-left: 20px;
    text-transform: uppercase;
    padding-bottom: 0%;
    
    
}

section {
    margin: 30px;
    background-color: darkgray;
    border: 1px solid #ccc;
    color: green;
    width: 90%; /* Smaller width for the code block */
    box-sizing: border-box; /* Include padding and border in the width */
}

.explanation {
    margin: 20px;
    color: black;
    width: 87%; /* Smaller width for the code block */
    text-align: justify; /* Justify text across the full width */
}

.code-block {
    margin-left: 10px;
    background-color: black;
    border: 1px solid #ccc;
    color: green;
    width: 90%; /* Smaller width for the code block */
    box-sizing: border-box; /* Include padding and border in the width */
}

.result {
    margin-left: 10px;
    background-color: white;
    border: 1px solid #ccc;
    color: darkred;
    width: 90%; /* Smaller width for the code block */
    box-sizing: border-box; /* Include padding and border in the width */
    font-style: italic;
    font-stretch: expanded;
    font-weight: bold;
    font-size: large;
    text-align: center;
}

pre {
    overflow: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

