.row-items{
    margin-top: 20px;
    width: 90%;
    display:flex; 
    flex-direction:row;
    max-width: 1024;
    background-image: linear-gradient(
          -0deg, 
          rgb(192, 192, 192) 0%,
          rgb(255, 255, 255) 100%
          
    );  
    overflow-x:scroll;
    box-shadow: 0 30px 40px rgba(0,0,0,.8);
    border-radius: 12px;
}
.item{
    display: inline-block;
    margin: 50px;
    background: #ffffff; 
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5) inset, 0 0 16px rgba(0, 0, 0, 0.25); 
    width:fit-content; 
    max-width: 800px;
    min-width: 640px; 
    border-radius: 12px; 
    justify-content: center; 
    align-items: center;
}
.item-title{
    margin:10px;
    text-shadow: 1px 1px #838383;
    text-align: center;
}
.item-description{
    margin: 10px;
    text-align: center;
}
.item-display{
    display: flex;     
    justify-content: center;  
    align-items: center;
}
.item-footer{
    justify-content: center; 
    width: 100%; 
    background-color: rgb(42, 95, 165); 
    border-radius: 12px; 
    display: flex; 
    margin-top: 15px; 
    margin-bottom: 0x;
}