/* Stylings for content presentation */
.app-list {
    display: flex; 
    flex-wrap: wrap;
    /*border: 2px solid #272635;*/
    background-color: #c7c7c9;
    color: #040405;
    /*background-image: linear-gradient(to bottom, #ede5d6, 95%, #675d49);*/
    /*border-radius: 8px;*/
    padding: 10px; 
    margin-top: 25px; 
    margin-bottom: 5px;
    box-shadow: 2px 2px 10px 0px #c7c7c9;
}
.app-list h3 {
    margin-top: 0; 
    margin-bottom: 0; 
    font-size: 1.5em;
    font-style: italic;
}
.app-list h4 {
    margin-top: 5; 
    margin-bottom: 0; 
    font-size: 1.2em;
}
.app-list h5 {
    margin-top: 0; 
    margin-bottom: 0; 
    font-size: 1.05em;
}
.app-list h5 + p {
    margin-bottom: 5px; /* Reduces space after "You may not:" paragraph */
}
.app-list ul {
    margin-top: 5px; 
    margin-bottom: 1em;
    padding-left: 20px;
}
.app-list p {
    width: 100%; 
    margin-top: 10px;
    margin-bottom: 10px;
}
.app-info {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%; 
    background-color: #1e1f28;
    margin-top: -10px;
    margin-left: -10px;
    margin-right: -10px; 
    padding-top: 10px; 
    padding-left: 10px; 
    padding-right: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;

}
.terms-icon {
    height: auto;
    width: 64px; 
    flex-shrink: 0;
 }
.content-wrapper {
    background-color: #1e1f28;
    color:#e3e3e4
}
.title-bar {
    background-image: url('../images/banners/circuit_m.webp');
}
.content-area {
    background-image: linear-gradient(to top, #56575e, #1e1f28);
}
.main-nav {
    background-image: linear-gradient(to bottom, #727379, 80%, #131319);
}
.menu a {
    color: #ababae;
}
.menu a:hover {
    background-image: linear-gradient(to bottom, #727379, 50%, #131319);
    color: #e3e3e4;
}
.site-footer {
    background-color: #56575e;
    color: #c7c7c9;
}

@media (min-width: 769px) { /*Desktop only */
    .content-wrapper {
        background-image: url('../images/banners/termspage_desk.webp'), var(--fallback-gradient);
    }
    .app-list {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) { /*Mobile only */
    .content-wrapper {
        background-image: url('../images/banners/termspage_mobi.webp'), var(--fallback-gradient);
        font-size: 14px;
    }
}
