* {
  color: rgb(50, 50, 50);
  font-family: Arial, Helvetica;
}

html, body{
  height: 100%;
}

h1, h2, h3, h4, h5, h6, h7{
  color: #3b00b3;
}

html {
  font-family:Source Sans Pro,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  line-height:1.5
 }

body, #page-container {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
}

/* layout page.html */

#header-container{
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #e6e6e6;
  margin: 0px;
  padding: 10px 100px 10px 100px;
}

#content-container{
  margin: 0px 100px 0px 100px;
  padding: 10px;
  flex-grow: 1;
}

#footer-container{
  padding:  20px;
  margin-left: 100px;
  margin-right: 100px; 
  border-top: 1px #e6e6e6 solid;
}

/* include footer.html */
#main-footer{
  display: flex;
  flex-direction:row;
}

#main-footer #footer-links{
  flex-grow: 1;
  justify-content:flex-end;
  text-align: right;
}

#main-footer #footer-links a{
  padding-left: 15px;
}

/* include main-menu.html */

#header-menu{
  display: flex;
  flex-direction: row;
  flex-grow: 2;
}

#page-menu{
  display: flex;
  flex-direction: row;
  justify-content: right;
  flex-grow: 1;
}

#page-menu ul{
  margin: 0;
  padding:0;
}

#page-menu li{
  display: flex;
  margin: 0px;
  padding: 0px;
  justify-content: flex-end;
}

#page-menu a{
  padding-left: 20px;
  font-weight: bold;
  font-size: 20;
}

/*HOME*/

#logo-box{
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-grow: 1;
}

#logo-box .logo-box-spacer{
  width: 100px;
}

#logo-box .logo-box-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#logo-box .logo-box-item img{
  size: 100px;
}

.content-box-h{
  display: flex;
  flex-direction:column;
  justify-content: center;
  text-align: center;
}

.content-box-h h1{
  text-align: center;
}

.content-box-h div{
  text-align: center;
  justify-content: center;
}