@charset "utf-8";
/* CSS Document */

/* Reset some default styles */



main {
    padding: 2rem;
}

.review {
    display: flex;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 5px;
}

.review-content {
    flex: 3;
}

.review-author {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-author img {
    width: 300px;
        margin-bottom: 0.5rem;
		padding:10px
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: white;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .review {
        flex-direction: column;
        text-align: center;
    }

    .review-author {
        flex: none;
        margin-top: 1rem;
    }
}
