body {
    font-family: 'Open Sans', sans-serif;
    background-image: url('../assets/background.png');
    background-color: #000000;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    font-size: 20px;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

#container {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

#header {
    padding: 0;
    margin: 0;
    top: 0;
    width: 100%;
    height: 200px;
}

#logo {
    margin: 0;
    padding: 5px;
    text-align: center;
    height: 100px;
}

#blurb {
    margin: 0;
    padding: 0;
    text-align: center;
}

#body {

}

#map {
    margin: auto;
    text-align: center;
    background-color: rgba(0,0,0, 0.7);
}

#footer {
    padding-top:25px;
    text-align: center;
    color: white;
    background-color: rgba(0,0,0, 0.7);
}

.blurb {
    border: 1px solid black;
    padding: 5px;
    border-radius: 10px;
    font-size: 20px;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    background-color: rgba(0,0,0, 0.7);
    color: white;
}

.blurb a {
    color: #00a3cc;
}

.connection {
    border: 1px solid black;
    padding: 2px;
    border-radius: 10px;
    font-size: 20px;
    width: 400px;
    margin: auto;
    background-color: rgba(0,0,0, 0.7);
    color: white;
}

.connection input {
    background-color: transparent;
    color: white;
    border: none;
    font-size: inherit;
    text-align: inherit;
    font-family: inherit;
    width: 190px;
}

.connection button {
    padding-bottom: 1px;
}



.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}