html, body {
	margin:0;
	background:whitesmoke;
	color:black;
  font-family: 'Roboto',Helvetica,Arial,sans-serif;
}

a{ 
  color:#0000FF;
}

#container{ 
  margin-left: 25%;
  margin-right:25%;
}

#header {
  margin:0;
  height:48px;
  width:100%;
  background:whitesmoke;
  padding-top:5px;
  padding-bottom:5px;
}   

#title img{
 height:42px;
 padding-top:2px;
 -webkit-filter: invert(1);
 filter: invert(1);
}

#content{
  margin-top:50px;
  padding:0;
  font-family: 'Roboto',Helvetica,Arial,sans-serif;
  color:black;
  margin-bottom:10%;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed {
  position: fixed;
  z-index: 10;
}
   
.form-group {
  margin-bottom: 1rem;
}
   
.form-control {
     display: block;
     width: 100%;
     height: calc(1.5em + .75rem + 2px);
     padding: .375rem .75rem;
     font-size: 1rem;
     font-weight: 400;
     font-family: -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;
     color: #495057;
     background-color: #fff;
     background-clip: padding-box;
     border: 1px solid #ced4da;
     border-radius: .25rem;
     transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
   }
   .form-control:focus {
     color: #495057;
     background-color: #fff;
     border-color: #80bdff;
     outline: 0;
     box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
   }
   .btn-primary {
     color: #fff;
     background-color: #007bff;
     border-color: #007bff;
     cursor: pointer;
     display: block;
     width: 100%;
     padding: .5rem 1rem;
     font-size: 1.25rem;
     font-weight: 400;
     font-family: inherit;
     line-height: 1.5;
     border-radius: .3rem;
     border: 1px solid transparent;
     transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
   }

   .btn-primary:hover {
     color: #fff;
     background-color: #0069d9;
     border-color: #0062cc;
   }
  .text-secondary {
    display: block;
    padding: .5rem 1rem;
    font-size: 80%;
    color: #6c757d;
    text-align: center;
    margin-bottom: .25rem;
    margin-top: .25rem
  }
  .text-secondary:hover {
    color: #494f54 !important;
  }
  a:hover {
    color: #0056b3 !important;
  }

  * {
    box-sizing: border-box;
  }