/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
.popbox {
box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 56%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #ffffff, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
filter: drop-shadow(0px 0px 1px #424242);
-webkit-filter: drop-shadow(0px 0px 1px #424242);
background:white;
color:black;
width:calc(100% - 20px);
height:fit-content;
max-height:190px;
overflow-y:auto;
border-radius:10px;
padding:8px 10px 10px 10px;
box-sizing:border box;
margin:0 auto;
}
body {
  background-color: white;
  color: black;
  font-family: Verdana;
}