
/*@import url('https://fonts.googleapis.com/css2?family=VT323+SC&display=swap');*/

body {
    background-color: #c1c1c1;
}
.container {
    position: relative;
    background-color: #c1c1c1;
  }
  
  .top-banner,
  .bottom-banner {
    position: fixed;
    width: 380px;
    height: 140px; /* Adjust height as needed */
    background-color: #c1c1c1; /* Adjust background color as needed */
  }
  
  .top-banner {
    top: 0;
    z-index: 2;
    height: 192px;
    width: 380px;
  }
  
  .bottom-banner {
    bottom: 0;
    z-index: 2;
  }
  
  .scrolling-paragraph {
    /*font-family: "VT323", sans-serif;
    font-size: 1.5em;
    font-weight: normal;
    font-style: normal;*/
    width: 380px;
    padding-top: 100px; /* Adjust padding-top to match the top banner height */
    padding-bottom: 100px; /* Adjust padding-bottom to match the bottom banner height */
    z-index: 1;
    overflow-y: scroll;
    background-color: #ffffff; /* Set background color to #ffffff */
  }
  
  .scrolling-paragraph p {
    /* Additional styling for the paragraph content */
  }