/* 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." */
   
  @font-face { 
  font-family: 'IBM Bios';
  src: url(Web437_IBM_BIOS.woff); 
      } 
  
body {
  max-width: 800px; /* the page cannot be wider than this value, but can be smaller */
  margin: 0 auto; /* magic that makes it centered */
  padding: 4px; /* keep it away from the very edges on cell phones */
  background-color: #000000;
  color: #5A01BE;
  font-family: 'IBM Bios'
}


.my-flex-wrapper {
  flex-wrap:wrap;
  max-width:400px;
}
.my-flex-wrapper-sm {
  display:flex;
  flex-wrap:wrap;
  max-width:200px;
}
.my-sidebar {
  border: 1px solid black;
}
.my-sidebar-sm {
  border: 1px solid black;
  order:2;
}

.my-content {
  width: 250px;
}
.wide {
max-width:100%;
}
.longstring {
word-break: break-all;
}
