body{
    background-color: black;
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
}


.top{
    grid-column: 5/9;
    overflow-wrap: break-word;
    grid-row: 5/4;
    color: green;
    background-color: transparent;
    font-size: small;
    
    width:600px;
    height:300px;
    
    border-image-slice:
        27 104 27 104;
    border-image-width:
        27px 104px 27px 104px;
    border-image-repeat:
        stretch stretch;
    border-image-source:
        url("dsi/top.png");
    border-style:
        solid;
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    grid-template-rows: repeat(12, [col-start] 1fr);
}

.top-content{
    display: flex;
    background-color: white;
    grid-column: 3/11;
    grid-row: 2/12;
    justify-content: center;
    align-content: center;
    text-align: center;
    overflow: scroll
}

.bottom{
    grid-column: 5/9;
    overflow-wrap: break-word;
    grid-row: 5/11;
    color: green;
    background-color: transparent;
    font-size: small;
    
    width:600px;
    height:300px;
    
    border-image-slice:
        27 104 27 104;
    border-image-width:
        40px 104px 40px 104px;
    border-image-repeat:
        stretch stretch;
    border-image-source:
        url("dsi/bottom.png");
    border-style:
        solid;
    display: grid;
    grid-template-columns: repeat(12, [col-start] 1fr);
    grid-template-rows: repeat(12, [col-start] 1fr);
}

.bottom-content{
    background-color: white;
    grid-column: 3/11;
    grid-row: 2/12;
    align-content: center;
    padding: 10px;
}

.hscroll{
    background-color: white;
    display: flex;
    width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
    gap: 30px;
}

.item{
    background-color: gray;
    border-radius: 20%;
    width: 100px;
    height: 100px;
    align-content: center;
    justify-content: center;
    text-align: center;
}

.item button{
    width: 100px;
    height: 100px;
    border-color: transparent;
    border-radius: 20%;
}