body {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-self: center;
}

.parentContainer {
    display: flex;
    flex-direction: column;
}

.topRibbon {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

.mainContent {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
}

.centreImg {
    display: flex;
    justify-content: center;
}

p+p,
li+li {
    margin-top: 20px;
}

.examples {
    display: flex;
    /* Allows the wrapper to grow, shrink, with a base width of 300px */
    /* You can also set a specific height if needed, e.g., height: 200px; */
    flex-direction: row;
}

.examples figure img {
    width: 100%;
    /* Ensures the image takes the full width of its wrapper */

    display: inline-block;
    /* Helps with alignment and responsiveness */
    object-fit: cover;
    /* Controls how the image fits within the defined width/height */
}

figure {
    text-align: center;
    margin-left: 5px;
    margin-right: 5px;
}

figcaption {
    text-align: center;
}

.currentPageBtn {
    font-weight: bold;
    color:rgba(2,79,163);
}

a {
    all: unset;
}

.inContentAnchor{
    color: rgba(2,79,163);
    font-weight: bold;
}

.inContentAnchor:hover{
    cursor: pointer;
}
.changePageBtn {
    font-weight: bold;
    color: gray;
}

.changePageBtn:hover {
    color: rgba(2,79,163);
    cursor: pointer;
}

h1{
    text-align: center;
    margin-bottom: 2px;
    font-weight: normal;
}
h2{
    margin-bottom: 2px;
    font-weight: bold;
    font-size:large;
}

hr{
    clear: both;
    padding-top: 20px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid rgba(2,79,163);
    width: 75%;

}
.top_hr{
    width: 15%;
    border-bottom: 6px solid rgba(2,79,163);
    padding-top: 0px;
    margin-bottom: 20px;
}