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

body {
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  background: #111111;
}

header, footer {
  font-size: large;
  text-align: center;
  padding: 0.3rem 0;
}

.search-box {
  height: 100%;
  padding: 2vh 1vw 2vh 1vw;
}

.search-box input {
  height: 100%;
  margin: 0;
  border: none;
  height: 100%;
  width: 40%;
}

.search-box button {
  background-color: #0074D9;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  padding: 15px 32px;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.cesium-container {
  width: 100%;
  height: 80vh;
}

/* ----------- Design Responsivo ----------- */

/* ----------- iPhone 6, 6S, 7 and 8 ----------- */

/* Portrait and Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
  body {
    min-height: -webkit-fill-available;
  }

  .search-box {
    height: auto;
  }

  .search-box input {
    width: 60%;
  }
}

/* ----------- Outros Dispositivos em modo retrato ----------- */

@media only screen and (max-device-width : 360px) and (orientation: portrait)  {
  .search-box {
    height: auto;
  }

  .search-box input {
    width: 60%;
  }
}
