
body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: auto;
}

h1 {
    color: green;
}

.header {
    margin: 0;
}

#title, #description {
    margin: 0;
    padding: 16px 16px;
    text-align: center
}

#title-logo {
    width: 48px;
    height: 48px;
}

#device-art-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
}

.da-list-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.da-list-item-pic {
    height: 500px;
    padding: 16px;
}

@media only screen and (max-width: 700px) {
    #device-art-list {
        display: flex;
        flex-direction: row;
        justify-content: start;
        overflow: auto;
    }

    .da-list-item-pic {
        height: 350px;
        padding: 16px;
    }
}

.da-list-item-platform {
    padding: 16px;
}

.da-list-item-compatibility, .da-list-item-platform {
    font-size: 9pt;
    color: rgba(0, 0, 0, 0.54)
}

.da-list-item-badge {
    height: 40px;
    padding: 16px;
}

.footer {
    text-align: center;
    padding: 16px;
}