@import url(styles.css);

section#reviews {
    margin-top: 1em;
    margin-bottom: 2em;
}

article.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 300px;
    grid-gap: 1em;
    margin: 0 auto;
    margin-top: 2em;
    place-items: center;
}

a.reviews-item-wrapper {
    display: flex;
    justify-content: center;
    width: 300px;
    padding: 2em;
}

div.reviews-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 1em;
}

span.reviews-platform {
    color: black;
    font-family: Raleway;
    font-weight: 200;
    font-size: 1.2rem;
    line-height: 2.1rem;
    text-decoration: none;
}

span.reviews-stars {
    color: yellow;
    font-family: Raleway;
    font-weight: 200;
    font-size: 1.4rem;
    line-height: 2.1rem;
    text-decoration: none;
    text-shadow: 1px 1px black;
}

span.reviews-stars.text {
    color: grey;
    text-shadow: none;
}
@media screen and (min-width: 880px) {
    section#reviews {
        margin-top: 0;
    }
    article.reviews-grid {
        width: 900px;
        grid-gap: 2em;
        margin-top: 3em;
        grid-template-columns: 1fr 1fr;
    }

    a.reviews-item-wrapper {
        width: 450px;
    }

    span.reviews-platform {
        font-size: 1.4rem;
    }

    span.reviews-stars {
        font-size: 1.5rem;
    }
}
