body{
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 20px;
    flex-wrap: wrap;
}

.container{
    padding: 20px;
    background-color: orange;
    color: white;
    height: 100px;
    width: 250px;
    overflow: scroll;
    /* box-shadow: 5px 5px 10px 5px blue; */
    box-shadow: 5px 5px 10px 5px blue, -5px -5px 10px 5px red, 0px 0px 20px 10px green, inset -1px -1px 5px 2px red, inset 1px 1px 5px 2px blue;
}

/* offset-x offset-y blur-radius spread-radius color */