/*Authors : Elliot Hanson and Shreya Nair for CS 257 Webapp assignment */
/* #F8C8DC*/
/*Default Style Start*/
html{
    font-family: Georgia, serif;
}
body {
	background-color: #AFCBD5;
}

.title_heading{
	color: #272838;
    text-align: center;
    font-weight: normal;
}



/*Default Style End*/

/*Nav Bar Start*/
li {
    display: inline-block;

}

/*#C84192*/
.active {
  background-color:  #03396c;
  color: white;
  
}

/*#E6AACE*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  text-align: center;
  background-color:  #6497b1;
}


li a {
  display: block;
  color: black;
  text-align: center;
  padding: 10px 50px;
  text-decoration: none;
}

/* #D981B8 */
li a:hover {
  background-color: #60A3D9;
}
/*Nav Bar End*/

h3, h4{
    color: #272838;
    text-align: center;
    font-weight: bold;
}

.description_table{
    border: 2px solid;
    margin: auto;
    width: 60%;
    padding: 5px;
    /* display: inline-block;
    padding: 5px; 
    border: 2px solid #272838;
    vertical-align: top;
    align-self: center;
    justify-content: center;
    justify-self: center;
    width: 500px; */

}


#description_text{
    color: #272838;
    word-wrap: break-word;
    font-weight: normal;
    text-align: center;
}

div{
    padding-left: 50px;
    padding-right: 50px;
}

/* Style buttons */
.btn {
  background-color: DodgerBlue; /* Blue background */
  border: none; /* Remove borders */
  color: white; /* White text */
  padding: 12px 16px; /* Some padding */
  font-size: 16px; /* Set a font size */
  cursor: pointer; /* Mouse pointer on hover */
}

/* Darker background on mouse-over */
.btn:hover {
  background-color: RoyalBlue;
}


