/* Copyright 2024 Oliver Smith
   SPDX-License-Identifier: GPL-3.0-or-later */

.start-banner-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 50px;
}

.start-banner-text {
    font-size: clamp(1.8em,6.5vw,2.9em);
    font-weight: bold;
    line-height: 1;
    color: var(--inline-accent-colour);
    margin: .5em 0;
}

.start-banner {
    margin: 0 auto;
}
.start-banner img {
    width: min(80vw, 110vh, 37.5rem);
}

@media (min-aspect-ratio: 4 / 3) and (min-width: 45rem) {
    .start-banner-grid {
        flex-wrap: nowrap;
    }

    .start-banner-text {
        text-align: left;
        margin: auto .15em auto 0;
    }
}

.start-ui-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px 40px;
    padding: 15px;
    background: var(--highlight-background-colour);
}

.start-ui-list img {
    height: min(20vmin, 100px);
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, .2));
}

.start-ui-list img.sxmo {
    height: auto;
    width: 150px;
}

.start-ui-list .more {
    font-size: 15pt;
}

.start-about {
    text-align: center;
}

.start-ui-list,
.start-about {
    margin-bottom: 50px;
}

.start-about-button a {
    padding: .2em .5em;
    font-size: 1.3em;
}

/* WHAT OTHERS SAY */
.quote {
    font-style: italic;
    font-weight: bold;
}

.quote-source {
    font-size: 0.8em;
}

.quote-margin-bottom {
    margin-bottom: 2em;
}
