#quests {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.quest {
    width: 22rem;
    background: #363636;
    border-radius: 15px;
    padding: .5rem;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    margin: .5rem;
    font-size: .8em;
}

.quest-image img {
    width: 5rem;
    height: 5rem;
    background: #ffffff;
    margin-right: 1rem;
}

.point-holder {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-right: 1rem;
}

@media only screen and (max-width: 1380px) {
    .quest {
        width: 20rem;
    }
}

@media only screen and (max-width: 768px) {
    .quest {
        width: 25rem;
    }
}

@media only screen and (max-width: 500px) {
    .quest {
        width: 15rem;
    }
}

@media only screen and (max-width: 340px) {
    .quest {
        width: 10rem;
        flex-direction: column;
        margin: .5rem;
        font-size: .9em;
    }
}

