@font-face {
		font-family: titillium;
		src: url( "/static/TitilliumWeb-Regular.ttf" );
}
* {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  font-family: 'titillium';
  background-image: linear-gradient(
    135deg, #1f2b2f 25%, #2a3539 25%, #2a3539 50%, #1f2b2f 50%, #1f2b2f 75%, #2a3539 75%, #2a3539 100%
  );
  background-size: 55.61px 57.58px;
}

.paper {
  margin-left: auto;
  margin-right: auto;

  border: 1px solid;
  box-shadow: 0px 0px 60px 4px;
}

@media only screen and (min-width: 600px) {
  .paper {
    width: 100%;
  }
}
@media only screen and (min-width: 900px) {
  .paper {
    width: 75%;
  }
}
@media only screen and (min-width: 1400px) {
  .paper {
    width: 50%;
  }
}

.topnav {
  overflow: hidden;

  background: rgb(132,163,174); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(132,163,174,1) 0%, rgba(218,239,248,1) 50%, rgba(132,163,174,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(132,163,174,1) 0%,rgba(218,239,248,1) 50%,rgba(132,163,174,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(132,163,174,1) 0%,rgba(218,239,248,1) 50%,rgba(132,163,174,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#84a3ae', endColorstr='#84a3ae',GradientType=0 ); /* IE6-9 */

  width: 100%;
  height: 80px;

	position: relative;
}

.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;

  display:flex; align-items:center; 
  
  position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.baritem {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.barlogo {
    width: 60px;
    height: 60px;
}

.logotext
{
    text-align: center;
    font-family: 'titillium';
    color: black;
    padding: 10px;
    font-size: 24px;
}

.header {
  background: rgb(132,163,174); 
  padding-top: 4px;
  padding-bottom: 4px;
  color: black;
  display: flex;
  align-items: center;

}
.header a {
  font-size: 24px;
  padding-right: 24px;
  padding-left: 16px;
  font-weight: bold;
  color: black;
}
.header a:link { text-decoration: none; }

.header a:visited { 
  text-decoration: none; 
  color: black;
}

.header a:hover { 
  text-decoration: none; 
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
}

.header a:active { 
  text-decoration: none; 
}

.header li {
	list-style-type: none;
}

@media only screen and (max-width: 500px) {
  .header {
    text-align: center;
  }
  .header a {
    padding-right: 12px;
    padding-left: 8px;
  }
}
@media only screen and (max-width: 400px) {
  .header a {
    padding-right: 6px;
    padding-left: 4px;
  }
}

.content {
  padding: 16px;
  background: rgb(59,84,102); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(59,84,102,1) 0%, rgba(75,147,147,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(59,84,102,1) 0%,rgba(75,147,147,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(59,84,102,1) 0%,rgba(75,147,147,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b5466', endColorstr='#4b9393',GradientType=0 ); /* IE6-9 */
  color: #f2f2f2;
  height: 100%;
}

footer {
  text-align: center;
  color: grey;
  padding: 10px;
}
