/* your styles go here */

.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* backdrop color and opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* ensure the loader appears on top of other elements */
  }