.pfp {
    display: flex;

    height: 10%;
    margin-top: 5%;

    justify-content: center;
    align-items: center;

    user-select: none;
}

.pfp-box {
    width: 150px; /* Adjust the width as needed */
    height: 150px; /* Ensure the height is equal to the width */
    border-radius: 50%;
}

.reviews-intro {
    display: flex;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 20%;
    user-select: none;

}


.reviews-name {
    display: block;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-size: 300%;

    color: white;
    text-shadow: 7px 7px 4px #000000;

}

.reviews-name:hover {
    transition: color 0.5s ease;
    color:rgb(172, 172, 172);
}

.reviews-info {
    display: block;

    margin-top: 1%;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100%;

    color: white;
}


.reviews-box {
    margin-top: 5%;
    
    margin-left: 20px;
    margin-right: 20px;


    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 20px; /* Row gap between reviews */
    max-width: 100%;
    height: 30%;
    align-items: center; /* Center the entire reviews box */
}

.review {
    background: linear-gradient(to bottom, #052942, #031019);
    padding: 15px;
    border-radius: 8px;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;


    width: 20%; 
    height: 100%;

    user-select: none;
}

.reviewer-name {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 100%;
    font-weight: bold;
    color: #ffffff;

    text-shadow: 3px 3px 4px #000000;
}

.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 100%;
    color: #ffffff;
    margin-top: 5%;
}

.reviewer-message {
    font-style: italic;
    font-size: 100%;
    color: #ffffff;
    margin-top: 15%;
}