/***************************************************** 
 *  PAGE-WIDE STYLES                                 *
 *****************************************************/
* {
box-sizing: border-box;
}

body {
background-color: #4098e5;
}

#bodycontent {
font-family: verdana, arial, helvetica, sans-serif;
/*font-size: 100%; */
font-size: 0.8em;
line-height: 1.8;
color: #000;
margin: 15px;
padding: 10px;
background-color: #fff;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
border: 3px solid blue;
}

.center {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}

/* Add a background color to the top navigation */
.topnav {
  background-color: #00f;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
/*  float: left; */
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04DCF0;
  color: white;
}

/***************************************************** 
 *  FORM STYLES                                      *
 *****************************************************/
 
 textarea {
      width: 60%;
      height: 150px;
    }