/*Color palette: 
Dark blue - #0094AE
Blue - #00AECC 
Gray - #E6E8E8
White
Black
*/

/*Other: Attribute selectors are used to increase specificity to override Bootstrap styling*/

::selection {
    background-color: #fff;
    color: #00AECC;
}

::-moz-selection {
    background-color: #fff;
    color: #00AECC;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: 'Muli', sans-serif;
  background-color: #0094AE;
  color: #fff;
}

h1 {
  font-size: 3.157em;
  font-family: 'Ovo', serif;
  margin-bottom: 2.369em;
}

h1,
p {
  text-align: center;
}

.input-group-wrapper {
  max-width: 50%;
  display: block;
  margin: 0 auto;
}

.input-group{
  height: 40px;
}

.form-control{
  height: 40px;
}

.form-control,
.btn[title*="Wikipedia"] {
  background-color: #00AECC;
  border-color: #fff;
  color: #fff;
  font-size: 18px;
}

.btn[title*="Wikipedia"]{
  height: 40px;
}

.form-control:hover,
.form-control:active,
.form-control:focus,
.btn[title*="Wikipedia"]:hover,
.btn[title*="Wikipedia"]:active,
.btn[title*="Wikipedia"]:focus {
  background-color: white;
  color: #000;
  outline-color: #fff;
  transition: 0.5s ease all;
}

a {
  border-bottom: 1px dotted #fff;
  color: white;
}

a:visited,
a:hover,
a:active {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.5s ease all;
}

#searchResults {
  margin-top: 2.369em;
  min-height: 70vh;
}

.panel,
.panel-default > .panel-heading {
  background-color: #00AECC;
  color: #fff;
  font-size: 1.333em;
}

.panel-default > .panel-heading {
  font-size: 1.777em;
}

.zeroResults {
  text-align: left;
}

footer {
  font-size: 1em;
  bottom: 0;
  left: 50%;
}

@media (max-width: 767px) {
  .input-group-wrapper {
    max-width: 100%;
  }
}