:root{
    --pri-color:#053b79;
    --sec-color:#5a97db;
}

html{
  width: 100%;
  height: 100%;
}

h1 {
  font-family: Verdana, sans-serif;
}

body {
  background-color: var(--bg-color);
  background-size: cover;
  background-blend-mode: lighten;
  background-attachment: fixed;

  width: fit-content;
  min-width: 100%;

  margin: 0px;
  padding: 0px;
  min-height: 100%;
}

footer {
  position: fixed;
  bottom: 15px;
  left: 15px;
  right: 15px;
}

a {
  text-decoration: none;  
}

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
.headerlink{
  padding: 0px;
  margin: 0px;
}


img {
  
}

.headerimg{
   height: 97px; 
}

h1 {
  margin: 0px;
  padding: 10px 45px 28px 45px;
  font-size: 48px;
  text-align: center;
  font-family: Verdana, sans-serif;
  color: var(--pri-color);
  background-color: var(--bg-pri-color);
}

span {
  
}

.offcolor {
  color: var(--sec-color);
}


div {
    font-family: Verdana, sans-serif;
    margin: auto;
    align-items: stretch;
    align-content: center;
}

.description{
  margin: 15px auto ;
  width: fit-content;
}

.clusterbuttons{
  margin: auto;
  width: fit-content;

  padding: 0px;

  margin: auto;
}

.header {
  background-color: #dededc;

  display: flex;
  margin: 0px;
  padding: 0px;

  height: 97px;
}


.clusterbutton {
  font-size: 14px;
  color: var(--pri-color);
  font-family: 'Verdana', sans-serif;

  cursor: pointer;

  text-align: center;
  vertical-align: middle;
  line-height: 16px;

  padding: 2px 8px 2px 8px;

  width: fit-content;
  height: 24px;
  margin-right: 15px;

  border-radius: 12px;

  border: solid;
  border-width: 1px;
  border-color: var(--pri-color);

  background: transparent;
}

.clusterbutton:hover {
  background-color: var(--pri-color);
  color: var(--bg-color);
  box-shadow: 0 0 2px var(--sec-color);
}
.clusterbutton:focus {
  background-color: var(--pri-color);
  color: var(--bg-color);
  box-shadow: 0 0 2px var(--sec-color);
}

.tooltip .tooltiptext{
  visibility: hidden;


  width: max-content;
  max-width: 500px;
  text-align: center;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
  line-height: 16px;
  color: var(--black);

  background-color: var(--bg-pri-color);

  border-radius: 10px;
  border: solid;
  border-width: 1px;
  border-color: var(--pri-color);

  padding: 5px;

  position: absolute;
  translate: -105% 25px;
  z-index: 10;
}

.tooltip .tooltiptext.right{
  translate: -40% -110%;  
}

.tooltip:hover .tooltiptext{
  visibility:visible;
}
