/* 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." */

.forum {
  width: 70em;
  min-height: 168px;
  border: 1px outset #333333;
  box-shadow: 8px 8px 5px #444444;
  background-image: linear-gradient(180deg, white, #dddddd 40%, #cccccc);
  text-align: left;
  
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
 
}
.forum img{max-width:100%; width:90%; height:90%; margin-top: -16px}
  
   
.camera {
  width: 10em;
  border: 1px outset #333333;
  box-shadow: 8px 8px 5px #444444;
  padding: 8px 12px;
  background-image: linear-gradient(180deg, white, #dddddd 40%, #cccccc);
  text-align: left
}
.top-bit {
  background-color: white;
  color: black;
}

.bottom-bit {
  background-color: black;
  color: white;
  border-style: outset;
  border-color: green;
}
body {
  
 text-align: center
}
body {
  
  background: black
  
}

