#elements {
    text-align: center;
}

.element {
    display: inline-table;
    /*width: 45%;*/
    padding: 10px;
    margin: 5px;
    border: 1px solid #dedede;
    border-radius: 2px;
    font-size: 20px;
}

.element > .image > img {
    width: 90%;
    height: auto;
}

.element > .title {
    font-weight: bold;
}

.element > .stars img {
    width: 30px;
}

@media (max-width: 200px), (max-height: 450px) {
    .element {
        font-size: 15px;
    }
    .element > .image > img {
        width: 50%;
    }

    .element > .stars img {
        width: 10px;
    }
}

@media (max-height: 275px) {
    .element > .image > img {
        display: none;
    }
}