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

body {
   background-color: #d2bdbd;
   color: black;
   font-size: large;
   font-family: Times ;
	margin-top: 5%;
	margin-bottom: 5%;
}
  .background_left {
		background-repeat:no-repeat;
		background-position:left;
		background-size: auto;
		position:absolute;
		left:0;
  }

  .background_right {
		background-repeat:no-repeat;
		background-position:right;
		background-size: auto;
		position:absolute;
		right:0;
  }

.header {
  background-color: transparent;
  color: blue;
  text-align: center;
  font-size: large;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 5%;
  width: 100%;
  background-color: transparent;
  color: blue;
  text-align: center;
}

.ctr {
	text-align: center;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: transparent;
  width: 100%;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  width: 16%;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: blue;
  color: white;
}

H1 { 
         font-size: 20px ;
         font-family: Liberation ;
         text-align: center;
}
H2 { 
         font-size: 22px ;
         font-family: Times ;
         text-align: center;
}

H3 { 
  font-size: 36px ;
  font-family: Times ;
  text-align: center;
}

LI {
         font-size: 20px ;
         font-family: Times ;
			margin-bottom: 5px ;
}

TABLE {
         font-size: 20px ;
         font-family: Times ;
}

.answer {
  padding-left: 10%;
  font-family: Times;
  font-size: 20px ;
}

.padded {
  padding-left: 20%;
  padding-right: 20%;
}

.chtext {
         font-size: 16px ;
         font-family: PMingLiU,MingLiU, serif;
}

.column {
  float: left;
  width: 30%;
  padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
  content: "";
  clear: both;
  display: table;
}

a:link {
  color: darkblue;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: darkred;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  color: darkblue;
  background-color: transparent;
  text-decoration: underline;
}

.fancy {
	color: darkred;
	font-family: "Times New Roman", Times, serif;
	font-size: x-large;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
  position: relative;
  text-align: center;
  color: white;
  font-size: large;
}

.centered {
  position: absolute;
  top: 5%;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

