/* Stylings for content presentation */
.centred {
    text-align: center;
    width: 100%; /*needed to centre!!*/
}
.app-list {
    display: flex; 
    flex-wrap: wrap;
    background-color: #004020;
    color: #bfffdf;
    padding: 10px; 
    margin-top: 25px; 
    margin-bottom: 5px;
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
}
.app-list h3 {
    margin-top: 0; 
    margin-bottom: 0; 
    font-size: 1.5em;
    font-style: italic;
}
.app-list p {
    width: 100%; 
    margin-top: 10px;
}
.app-info {
    display: flex;
    justify-content: left; 
    align-items: center;
    width: 100%; 
    background-image: linear-gradient(to bottom, #008040, 50%, #004020);
    margin-top: -10px;
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.app-icon {
    width: 64px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0; 
    margin-right: 10px; 
}
.platform-icon {
    height: auto;
    width: 64px; 
    flex-shrink: 0;
 }
.app-info-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: right;
}
.app-info-btn a:hover img {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}
.platform-images {
    text-align: center;
}
.gradient-text {
    background-image: linear-gradient(to bottom, #9fffcf, 70%, #00ff80);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
}
.content-wrapper {
    background-color: #004020;
    color:#bfffdf;
    --fallback-gradient-color: #004020;
}
.title-bar {
    background-image: url('../images/banners/circuit_g.webp');
}
.main-nav {
    background-image: linear-gradient(to bottom, #9fffcf, 80%, #004020);
}
.menu a {
    color: #002010;
}
.menu a:hover {
    background-image: linear-gradient(to bottom, #9fffcf, 50%, #004020);
    color: #9fffcf;
}
.content-area {
    background-image: linear-gradient(to top, #00ff80, #004020);
}
.site-footer {
    background-color: #00ff80;
    color: #002b40;
}

@media (min-width: 769px) { /*Desktop only */
    .content-wrapper {
        background-image: url('../images/banners/articles_desk.webp'), var(--fallback-gradient);
    }
    .app-list {
        width: 80%;
        margin-left: auto;
        margin-right: auto; 
    }
    .app-info {
        font-size: 0.9em;
    }
}

@media (max-width: 768px) { /*Mobile only */
    .content-wrapper {
        background-image: url('../images/banners/articles_mobi.webp'), var(--fallback-gradient);
        font-size: 14px;
    }
    .app-icon {
        width: 48px;
        height: 48px;
    }
    .plat {
        height: 80px;
        width: auto; 
    }
    .app-info {
        font-size: 0.6em;
    }

}
