h1 {
    font-size: 5rem;
}

.information {
    /* Fill grid from left to right with 3 columns */
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.card {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.icon_holder {
    background: white;
    /* Make square and big */
    width: 5rem;
    height: 5rem;
    /* Center the icon */
    display: flex;
    justify-content: center;
    align-items: center;
}

.material-icons.md-60 {
    font-size: 3rem;
}

.inner_card {
    margin: 1rem;
    color: white;
}

.bit_name {
    font-size: 1rem;
}


.bit_info {
    font-size: 2rem;
}