div.landingpage {
    max-width: 80%;
    background-color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.herologobox {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;

    > img {
        width: max(100px, 50%);
        height: max(100px, 50%);
    }

    > .herotitle {
        font-size: min(max(5vw, 2em), 4em);
        font-style: normal;
        font-weight: bold;
        color: #00A3FF;
        text-align: center;
        margin: 10px 0;
    }

    > .herotext {
        font-size: min(max(3vw, 1.5em), 2.5em);
        font-style: italic;
        font-weight: bold;
        color: #333;
        text-align: center;
    }
}

div.launchtext {
    font-size: min(max(2.5vw, 1em), 2em);
    font-style: normal;
    font-weight: bold;
    color: #00A3FF;
    text-align: center;
    text-transform:uppercase;
    padding-top: 1vw;
    padding-bottom: 1vw;
    
}

div.cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;

    /* cards displayed horizontally on smaller screens */
    @media screen and (max-width: 800px) {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    > div.card {
        max-width: 200px;
        margin: 10px;
        padding: 20px;
        background-color: #FFC522;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;

        > .card-image {
            width: 150px;
            height: 100px;
            margin-bottom: 10px;
        }

        > .card-title {
            font-size: 1.5em;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        > .card-description {
            font-size: 1em;
            color: #666;
            text-align: center;
        }
    }
}
