/*
Source - https://stackoverflow.com/a
Posted by jbutler483, modified by community. See post 'Timeline' for change history
Retrieved 2025-12-05, License - CC BY-SA 3.0
*/
body{background-image: url(estebg.jpeg); background-size: cover;}

#container {
         background-image: url(cakebg.jpeg); background-size:contain;
         border-radius: 10px;
         width: 700px;
         height: 500px;
         margin:auto;
         position: relative;
       }

       #container #left {
         overflow:scroll;
         position: absolute;
         width: 20%;
         height: 80%;
         background: white;
         left: 5%;
         top: 15%;
       }
       #container #right {
         overflow:scroll;
         position: absolute;
         width: 20%;
         height: 80%;
         background: white;
         right: 5%;
         top: 15%;
       }
       #container #middle {
         overflow:scroll;
         position: absolute;
         width: 50%;
         height: 80%;
         background: white;
         right: 25%;
         top: 15%;
       }
       #container #top {
         text-align: center;
         position: absolute;
         width: 50%;
         height: 10%;
         background: white;
         right: 25%;
         top: 2%;
       }