body {
    font-family: sans-serif;
}

.reviews {
    text-align: center;
    margin: 50px 0;
}

.reviews h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.review-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.review {
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 20px;
    margin: 20px;
    width: 300px;
}

.review img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.review p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.review cite {
    font-style: italic;
}