@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

* {
  font-family: "Lato", sans-serif;  
  box-sizing: border-box;
  margin: 0;
  padding: 3px;
  background-color: #eeeeee;
}

h2 {
  font-size: 20px;
  color: #26453D;
  text-decoration: none;
}

h3 {
  color: #26453D;
  text-decoration: none;
}

header ul{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0%;
  white-space: nowrap;        /** Forces the contents of a header element to never wrap. **/      
}


header h2  /** Selects all h2's inside of a header. **/
{
  margin: 2px;
  border: 0;
  padding: 15px 2px 10px;
  font-size: 18pt;
  font-weight: bold;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  overflow: hidden;
  z-index: 100;
  background-color: #eeeeee;  
  white-space: nowrap;        /** Forces the contents of a header element to never wrap. **/  

}

.name {
  /* position: absolute; */
  margin-top: auto;
  /* margin-bottom: auto; */
  display: flex;
  justify-content: center;
  font-size: 18pt;
  font-weight: 700;
}


.nav_line  /** Selects all hr's inside of a header. **/
{
  margin: 0;
  padding: 0;
  height: 1px;
  color: #622954;
  border: 0.5px solid #26453D;
  background-color: #eeeeee;
    
}

.nav_links {
  list-style: none;
  position: relative;  
}

.nav_links li {
  display: inline-block;
  padding: 0pt 20px;    
}


.nav_links li a {
  transition: all 0.3s ease 0s;
  text-decoration: none; 
  font-size: 18px;  
  font-weight: 700;
  color: #26453D;
}

.nav_links li a:hover {
  color: #268785
}

a {
  color: #268785;
  text-decoration: none;
}
a:hover {
  color: #1E88A8
}


.main {
  font-size: 14pt;
  margin: 0 auto;
  border: 0;
  padding: 150px 0px 0px;
  width: 70%;  
  min-width: 400px;
  max-width: 800px;
  text-align: left;
  position: relative;
  display: block;
  line-height: 1.5;
  
}

.text-wrap{
  float: right;
  margin-left: 5px;
}
