html {
    background-image: url("/pages/assets/img/backgroundImage01.png");
    background-repeat: no-repeat;
    background-size: cover;
}

myriware-content {
    display: grid;
    grid-template-columns: 1fr 6fr 1fr;
    grid-template-rows: 1fr;
    column-gap: 1rem;
    padding: 1rem;
    >div.left >div.card {
        display: flex;
        align-items: center;
        flex-direction: column;
        >a {
            font-size: 1.25rem;
            color: purple;
            text-decoration: none;
        }
    }
    >div.right >div.card {
        >div {
            h1 { font-size: 2rem; margin: 0; padding: 0; }
            h1, h2, h3, h4, h5 { margin-bottom: 0.25em }
            p { font-size: 1.25rem; }

            &.center {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
            }
        }
    }
    
}