html {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: #18191a;
    margin-left: 15%;
    margin-right: 15%;
    color: #e4e6eb
}
h1 {
    background-color: #A1A1A1;
    color: black;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 10px;
    margin-block: 40px;
}
h1.a {
    padding: 5px;
}
/* toc class is for the Table of Contents page */
h1.toc {
    margin-bottom: 40px;
}
.list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none;
}
li {
    margin-bottom: 10px;
}
/* toc class is for the Table of Contents page */
a.toc {
    font-size: x-large;
    text-decoration: none;
    margin: 30px;
    background-color:#a1a1a1;
    border-color:#111;
    border-style: solid;
    border-width: .2em;
    border-radius: .15em;
    outline-style: solid;
    outline-color: #d500f9;
    outline-width: .2em;
    width: 65vw;
    padding: .5em;
    text-align: center;
}
a.toc:link {
    color: black;
}
a.toc:visited {
    color: black;
}
a:link {
    color: #d500f9;
}
a:visited {
    color: #d500f9;
}
.logo {
    margin-right: 10;
}
.top-link {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 20px;
    padding-right: 20px;
}
.images {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
/* screen-class and screen-list classes are on the troubleshooting page */
.screen-shot {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.screen-list {
    list-style-type: none;
}
.link {
    margin-top: 20px;
    margin-bottom: 30px;
}
.columns-container {
    display: flex;
    flex-direction: row;
}
.columns-element {
    display: inline;
    width: 50%;
}
.app-screen-shots-group {
    display: flex;
    flex-direction: column;
    width: 30%;
}
.app-screen-shot {
    margin: 20;
    border-style: solid;
    border-color: black;
    border-width: 5;
}
.app-icon-image {
    height: 40;
    margin-bottom: 15;
}
.app-small-image {
    height: 50;
    margin-bottom: 15;
}
.app-medium-image {
    height: 60;
    margin-bottom: 15;
}
.app-medium-large-image {
    height: 90;
    margin-bottom: 15;
}
.app-large-image {
    height: 120;
    margin-bottom: 15;
}
.app-xlarge-image {
    height: 150;
    margin-bottom: 15;
}
.app-xxlarge-image {
    height: 200;
    margin-bottom: 15;
}
.app-sub-list {
    margin-top: 10;
}
@media screen and (max-width: 600px) {
    html {
        margin-left: 2%;
        margin-right: 2%;
    }
    h1 {
        flex-direction: column;
    }
    .images {
        max-width: 100%;
        width: auto;
        height: auto;
    }
    .columns-container {
        flex-direction: column;
    }
    .columns-element {
        width: 100%;
    }
    .app-screen-shots-group {
        width: 100%;
    }
}