*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

header{
    width: 100vw;
    height: 80px;
    border-bottom: solid 1px rgba(16, 16, 16, 0.1);
    font-family: 'Poppins';
	background-color: #B7C9E2;
	box-shadow: 5px 5px 20px gray;
}

header .inner{
    width: 800px;
    height: 100%;
    display: block;
    margin: 0 auto;
	
}

header .logo{
    display: table;
    height: 100%;
    float: left;
}

header .logo div{
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

header .logo img{
    height: 50px;
    margin-top: 5px;
}

header nav{
    float: right;
    height: 100%;
}

header nav li{
    display: table;
    height: 100%;
    float: left;
    margin-right: 8px;
}

header nav li:last-of-type{
    margin-right: 0;
}

header nav span {
    display: table-cell;
    vertical-align: middle;
}

header nav a{
    color: #101010;
}

 /* Dropdown Button */
.button {
  padding: 16px;
  font-size: 16px;
  border: none;
  font-family: 'Poppins';
  background-color: #B7C9E2;
}

.button {border-radius: 8px;}
.button:hover{background-color: #A6AEBF;} 

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

.container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
  margin-top: 10px;
}
.container > div {
  background-color: #f1f1f1;
  margin: 5px;
  padding: 10px;
  font-size: 24px;
  text-align: center;
}

a {
  color: black;
}

p {
	display: inline-block; 
	text-align: left; 
	font-size:16px;
}

p.a {
	color: blue;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.maintext {
  display: block;
  padding: 10px;
  
  margin: auto;
  margin-top: 10px;
  max-width: 50%;
}
.maintext > div {
  background-color: #f1f1f1;
  margin: 5px;
  padding: 10px;
  font-size: 24px;
  text-align: center;
}