* {
    box-sizing: border-box;

}

.documentation-body {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    font-family: sans-serif;
    font-size: 100%;
    align-items: start
}



ul.nav {
    list-style-type: none;
    text-transform: uppercase;
    height: 100%;
    line-height: 2;
}

a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 110%;
}

.main-menu {
    height: 60px;
    line-height: 60px;
    display: block;
    background-color: #eee;
    text-indent: 15%;

}

.main-menu a:hover {
    height: 60px;
    display: block;
    background-color: rgb(65, 136, 207);
    color: white;
}

.main-menu a.active {
    background-color: #999;
}


.htmlStructure {
    background-color: #eee;
    padding: 25px;
    font-size: 1rem;
}

li,
h2,
p,
code,
H4 {
    font-family: sans-serif;
}

.link {
    text-decoration: underline;
    color: blue;
}

.canister {
    margin: 0 40px;
}

@media only screen and (max-width: 760px) {
    .documentation-body {
        grid-template-columns: 1fr;


    }
}