.grid-container{
    width: 100%;
    display: grid;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    gap: 0.3rem;
    padding-top: 0.3%;
}

.inner_Grid{
    display: grid;
    grid-template-columns: 50% 50%;
    object-fit: cover;
    overflow: hidden;
    border-right: 1px solid;
    flex-direction: row;
}

.diff_Grid{
    display: grid;
    grid-template-columns: 100%;
    object-fit: cover;
    overflow: hidden;
    border-right: 1px solid;
    flex-direction: column;
}

.box{
    display: grid;
    grid-template-columns: 46% 8% 46%;
    text-align: start;
    /* background: radial-gradient(circle, rgba(0, 204, 255, 0.692) 0%, rgba(0, 0, 0, 0.801) 100%); */
    /* background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(248, 210, 210) 100%); */
    background: rgb(255, 255, 255);
    background: #e6decc;
    object-fit: cover;
    overflow: hidden;
    max-width: 100%;
    max-height: 225px;
    border-radius: 4px;
    border: solid;
    gap: 1rem;
    max-height: fit-content;
}

.title{
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: center;
}

.asinTitle{
    text-align: center;
    padding-top: 20%;
    padding-right: 10%;
    white-space: pre-line;
}

.diffTitle{
    text-align: center;
    padding-right: 20%;
    padding-top: 10%;
}

.diffPerText{
    text-align: center;
    padding-right: 15%;
}

.diffAbsText{
    text-align: center;
    padding-right: 25%;
    padding-bottom: 45%;
}

img{
    padding: 0.5rem;
    width: 90%;
    height: 90%;
    object-fit: cover;
    max-width: 250px;
    max-height: 450px;
    padding-left: 10%;
}

canvas{
    padding-left: 0.25rem;
    max-height: 150px !important;
    max-width: 100% !important;
}