div#navbar-outer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;

  border-width: 0;
  border-bottom-width: 0.6rem;
  border-bottom-style: solid;
  border-bottom-color: #000;
  padding-bottom: 0.1rem;
  padding-top: 0.7rem;

  font-size: 2rem;
}

img#navbar-logo {
  height: 4.5rem;
  padding: 0.5rem;
  margin-left: 0;
  padding-left: 0;

  display: block;
}

div#navbar-outer div {
  margin-right: 1.5rem;
}

div#navbar-outer a:link, div#navbar-outer a:visited {
  text-decoration: none;
  color: #666;
}

div#navbar-outer a:hover {
  color: #000;
}

@media (min-width: 400px) {
  /* div#navbar-outer{
    border: 5px solid red;
  } */
}

/* Larger than phablet */
@media (min-width: 550px) {
  /* div#navbar-outer{
    border: 5px solid orange;
  } */
}

/* Larger than tablet */
@media (min-width: 750px) {
  /* div#navbar-outer{
    border: 5px solid yellow;
  } */

  div#navbar-outer {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  /* div#navbar-outer{
    border: 5px solid green;
  } */
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
  /* div#navbar-outer{
    border: 5px solid blue;
  } */
}
