body{
    height: 100vh;
}
#review-header{
    width:100%;
    height:15%;
    /* background-color:aqua; */

}

#review-modal-container{
    width:100%;
    height:100vh;
    /* background-color:burlywood; */
} 

#review-container{
    height:85%;
    width:100%;
    /* background-color:brown; */
    border-top: solid 2px #000000;

} 

.content-container{
    display:flex;
    flex-direction:row;
    padding:2px;
    gap: 5px;
    height:fit-content;
    border-bottom: solid 2px #2f184b;
}

.review-text{
    /* border: solid 2px #000000; */
    width:40%;
}

figure{
    text-align:center;
    transition: all 0.5s ease;
    width:300px;
}
figure img{
    width:150px;
}

figure:hover{
    transform:scale(1.1);

}

figure:active{
    transform: translate(50%);
}

figure:visited{
    transform:translate(50%);
} 