body {
  display: flex;
  flex-direction: column;
  min-width: 375px;
}

header {
  flex: 0 80px;
}

main {
  flex: 1 calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

footer {
  flex: 0 30px;
  background: linear-gradient(45deg, #4e73df, #1e3d8c); /* Added gradient */
}

menu {
  flex: 1;
  display: flex;
  /*  overwrite Bootstrap so the menu does not wrap */
  flex-direction: row !important;
  list-style: none;
}

.navbar-brand {
  padding-left: 0.3em;
  border-bottom: solid rgb(182, 182, 182) thin;
}

menu .nav-item {
  padding: 0 0.3em;
}

footer a {
  float: right;
  color: white;
}

.navbar-nav .nav-link:hover {
  color: #f8f9fa !important;
  background-color: rgba(255, 255, 255, 0.1);
}

input.form-control {
  font-size: 1.2rem;
}

button {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-height: 600px) {
  header {
    display: none;
  }
  footer {
    display: none;
  }
  main {
    flex: 1 100vh;
  }
}
