.review-title {
    text-align: center;
    align-items: center;
    width: 80%;
    margin-left: 10%;
}
.review-title h1 {
    color: #ff0054;
    font-size: 42px;
}
.review-title h1::after {
    content: "";
    height: 4px;
    width: 230px;
    background-color: #5f0020;
    display: block;
    margin: auto;    
}

.reviews-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}
.gallery img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s, box-shadow 0.5s, outline 0.5s;
}
.gallery img:hover {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
    outline: 2px solid #ffa600;
}
