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

/*following should pick the class blogentry and style it accordingly... should... */
.blogentry {
  display: block;
  background-color: white;
  font-family: arial;
  color: black;
  
  outline-color:#ff33bb;
  outline-style: outset;

    width: 800px;
    
    padding: 4px;
    border: 18px #c91aff;    
    margin: 25px;
}


/*following for collecting pieces of information without sorting them... like a box for notices*/

.fragment {
  
    display: block;
  background-color: white;
  font-family: arial;
  color: black;
  
  outline-color:#ff33bb;
  outline-style: hidden;

    width: 800px;
    
    padding: 4px;
    border: 18px #c91aff;    
    margin: 25px;
  }


/*columns for nav bar */
.row {
  display: flex;
}

.column {
  flex: 50%;
}

/*old navigation bar style: version til Oct. 11 2019 
nav {
  list-style-type: none;
      margin: 25;
      padding: 15;
      

      display: block;
      background-color:#FF1493;
      width: 200px;
}

li a:hover {
background-color: #FFD700;
  }

.active {
  background-color:#ffffff;}

body {
  background-color: #ffffff; 
  
  color: black;
  font-family: Verdana;
}

ending comment old nav bar style*/