/* Text */
* {
    font-family: 'Open Sans', sans-serif !important;
}
b, strong {
    font-weight:bold !important;
}
/* title */
.title {
    height: 8em;
    background-color: white !important;
}
#logo {
    display:inline-block;
    margin-top: 0.5em;
    font-size: 3em;
    color: black;
    padding-left: 10%;
    text-decoration: none;
    font-weight: bold;
}
h1 a {
    display:inline-block;
    margin-top: 0.5em;
    font-size: 3em;
    color: black !important;
    padding-left: 10%;
    text-decoration: none !important;
    font-weight: bold;
    
}
#sub {
    font-size: 0.9em;
    color: #99a1b7;
    padding-left: 10%;
    padding-top: 0.3em;
}
/* Nav */

.topnav {
  text-align:center;
  overflow: hidden;
  background-color: #222222;
  text-transform: uppercase;
}

.topnav a {
  display: inline-block;
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.3em;
  margin: 0 auto;
  height: 2em;
}

.topnav a:hover {
  background-color: #3f3f3f;
  color: #ffffff;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

}

/* Body */
html, body {
  height: 100%;
}

body, head {
  display: flex;
  flex-direction: column;
}

.content {
  background-color: #efefef;
  flex: 1 0 auto;
}

.main {
    border: none;
    padding: 1em;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: 10%;
    margin-right: 10%;
    background-color: white;
    font-size: 1em;
}

.bold {
    font-weight: bold;
}
.main * {
     line-height: 1.2;
}

@media screen and (max-width: 600px) {
    .main {
        margin-left: 0px !important;
        margin-right: 0px !important;
        margin-bottom: 2em !important;
        margin-top: 2em !important;
        border-width: 1.5em !important;
    }
}

.title-main {
    font-weight: normal;
    font-size: 1.8em;
    text-align: center;
    line-height: 1.5;
}

.center {
    text-align: center;
}

.inline {
    display: inline;
}

.liststyle {
      list-style-type: circle;
      padding: 2%;
}

.button{
    width: 80%;
    background-color: #222222;
    border-style: solid;
    height: 2%;
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-top: 2em;
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    text-decoration: none;
    color: white;
}

.button:hover{
    background-color: #3f3f3f;
}

.button:active {
    position:relative;
	top:2px;
}

.submit {
    background-color: #222222;
    color: #fff;
    border: 2px solid #222222;
    border-radius: 8px;
    width: 80%;
    height: 2em;
    margin: 0 auto;
    display: block;
    font-size: 1.6em;
    margin-top: 0.5em;
}

.submit:hover {
    background-color: #3f3f3f;
    color: white;
}

.submit:active {
    top: 2px;
    position: relative;
}

.input {
    background-color: white;
    color: black;
    border: 2px solid #222222;
    border-radius: 8px;
    width: 80%;
    height: 2em;
    margin: 0 auto;
    display: block;
    font-size: 1.6em;
    text-align: center;
}

.input:active {
    top: 2px;
    position: relative;
}
.title-submit {
    font-weight: normal;
    font-size: 1.6em;
    text-align: center;
    line-height: 1.5;
    padding-top: 1em;
}

.output {
    padding: 0.8em;
    border: 2px solid #222222;
    margin-top: 1em;
    color: white;
    background-color: #222222;
    border-radius: 8px;
    overflow: auto;
}
/* Style the tab */
div.tab {
    overflow: hidden;
    border: 1px solid #fff;
    background-color: #222222;
    width: 80%;
    margin: 0 auto;
}

div.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: #fff;
}

div.tab button:hover {
    background-color: #3f3f3f;
}

div.tab button.active {
    background-color: #3f3f3f;
}

.tabcontent {
    padding: 1em;
    display: none;
    border: 1px solid #ccc;
    border-top: none;
    width: 80%;
    margin: 0 auto;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
/* footer */
.foot {
    text-align: center;
    font-size: 1.5em;
    overflow: hidden;
    background-color: #222222;
    color: #fff;
    height: 2em;
    padding-top: 0.5em;
}

.link {
    color: #fff !important;
    text-decoration: underline !important;
}