html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14pt;
    background-color: #eeeef5;
    color: #111111;
}

.info {
    max-width: 800px;
    margin: auto;
    padding: 7px;
}

p {
    line-height: 1.6em;
}

p a {
    text-decoration: none;
    color: #222266;
}

h1 {
    font-size: 3em;
}

.math {
    font-family: 'Noto Serif', serif;
    font-size: 1.1em;
}

.comparison-list li {
    margin: 1em 0em;
}

.comparison-item {
    display: flex;
    align-items: center;
    column-gap: 0.3em;
}

.comparison-image {
    height: 2em;
    margin-left: 3px;
}

#cardtable {
    background-color: #778899;
    padding: 40px 40px;
    box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.4);
}

#cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30px, 100px));
    column-gap: 10px;
    row-gap: 10px;
    justify-content: center;
}

#cards img {
    outline: solid 1px black;
    border-radius: 7px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); 
    max-width: 100%;
    max-height: 100%;
    width: 100px;
    height: auto;
    min-height: 136px;
    /* background-color: white; */
    /* thanks to: https://www.magicpattern.design/tools/css-backgrounds */
    background-color: #e5e5f7;
    background-image: linear-gradient(135deg, #444cf7 25%, transparent 25%), linear-gradient(225deg, #444cf7 25%, transparent 25%), linear-gradient(45deg, #444cf7 25%, transparent 25%), linear-gradient(315deg, #444cf7 25%, #e5e5f7 25%);
    background-position: 5px 0, 5px 0, 0 0, 0 0;
    background-size: 10px 10px;
    background-repeat: repeat;
}

#credits {
    margin-top: 17px;
    text-align: center;
}

#credits a {
    color: #4e4d4d;
    text-decoration: none;
    font-size: 0.7em;
}