.main-content {
  height: auto;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
/* start nav bar */
.small-banner {
  display: flex;
}
.small-banner .navbar,
.small-banner .brand {
  flex: 1;
}
.navbar {
  border-radius: 0px;
}
.navbar ul {
  justify-content: flex-end;
  list-style: none;
  display: flex;
  justify-items: end;
}

.navbar .navbar-toggle {
  visibility: hidden;
}
.nav li {
  position: relative;
  display: block;
}
.nav > li a {
  text-decoration: none;
  margin: 1em;
}

.navbar-default .navbar-nav > li > a {
  color: #ddd;
}
.navbar-default .navbar-nav > li > a:hover {
  color: silver;
}
.nav > li > a.active {
  color: ghostwhite;
}

.navbar-default .navbar-nav > li:last-of-type {
  margin-right: 10px;
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
  min-height: 120px;
}
.navbar-default {
  background: linear-gradient(
    to top,
    rgba(78, 64, 80, 1),
    rgba(27, 26, 27, 0.8)
  );
  margin-bottom: 0px;
  border: none;
  min-height: 90px;
  width: 100%;
  border-bottom-width: 0px;
}
#brand {
  height: 120px;
  position: relative;
  text-align: center;
  background: linear-gradient(
    to top,
    rgba(78, 64, 80, 1),
    rgba(27, 26, 27, 0.8)
  );
}
#brand > span:first-child {
  font-size: 5rem;
  padding-left: 1em;
  color: silver;
}

/* end nav bar */
@media (max-width: 1600px) {
  body {
    display: grid;
    margin: 0;
  }
  .container-new {
    width: 90%;
    display: grid;
  }

  .small-banner {
    display: flex;
    flex-direction: column;
  }
  .small-banner #brand {
    text-align: left;
    flex-shrink: initial;
  }
  .small-banner span:first-child {
    font-size: 3rem;
    justify-content: center;
    display: flex;
    padding-left: 0px;
  }
  .small-banner .navbar ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .small-banner li a {
    text-decoration: none;
    margin: 0px;
    padding-top: 1em;
    display: flex;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  .container-new {
    display: flex;
    flex-direction: column;
    width: 80%;
  }
}

@media (max-width: 767px) {
  body {
    display: flex;
    margin: 0;
  }
  .small-banner {
    display: flex;
    flex-direction: column;
  }
  .small-banner #brand {
    text-align: left;
    flex-shrink: initial;
    height: 45px;
  }
  #brand > span:first-child {
    font-size: 2rem;
    justify-content: center;
    display: flex;
    padding-left: 0px;
  }

  .small-banner .navbar ul {
    display: flex;
    flex-direction: column;
  }
  .small-banner li a {
    text-decoration: none;
    margin: 0px;
    padding-top: 1em;
    display: flex;
  }
  .container-new {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .navbar-default {
    min-height: 1px;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background: silver;
  }

  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    margin: 2px;
    color: silver;
  }
  .navbar .navbar-toggle {
    visibility: visible;
    background: linear-gradient(to top, #4e4050, rgba(27, 26, 27, 0.8));
    margin-top: 1em;
    margin-left: 1em;
  }
  #navbar.navbar-collapse.collapse {
    height: 0px;
    margin-block-start: 0px;
    padding-inline-start: 1em;
  }
  #navbar.navbar-collapse.collapse > .navbar-nav {
    visibility: hidden;
    opacity: 0;
  }
  #navbar.navbar-collapse.collapse.in > .navbar-nav {
    visibility: visible;
    margin-block-start: 0px;
    padding-inline-start: 1em;
    opacity: 1;
  }
  #navbar.navbar-collapse.collapse.in {
    height: auto;
  }
}
