#top-header {
  z-index: 1;
  background-color: #dcccac;
  position: fixed;
  top: 0px;
  display: flex;
  width: 100%;
  height: 75px;
}
#logo {
  width: 530px;
}
#logo:hover ~ #credit {
  transition: opacity 1s;
  opacity: 1;
}
#credit {

  background-color: #dcccac;
  font-size: 12.5px;
  margin-left: 10px;
  padding: 5px;
  width: 419px;
  border: 1px black solid;
  opacity: 0;
}
#source1 {
  position: relative;
}
#logo img {
  top: 10px;
  left: 10px;
  position: relative;
  width: 400px;
}

/* navigation styles ######### */

#menu-nav {
  order: 2;
  max-width: 80%;
  top: 10px;
  background-color: #f5f0df;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: absolute;
  height: 50px;
  width: fit-content;
  right: 10px;
}

#navigation-bar ul {
  margin: 0%;
  top: 10px;
  height: 50px;
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
}
#navigation-bar li {
  display: inline-block;
  text-align: center;
  list-style: none;
  vertical-align: middle;
}
#navigation-bar li:hover div::before {
  right: 0;
  left: 0;
}
#navigation-bar li:hover p {
  transition: opacity 0.5s;
  opacity: 1;
}
#navigation-bar div {
  top: 0;
  padding-top: 3px;
  height: 45px;
  width: 45px;
  color: black;
  border: 1px transparent solid;
  text-decoration: none;
  text-align: center;
  border-radius: 50%;
  display: block;
  transition: 0.5s ease;
}
p {
  position: relative;
  opacity: 0;
}
#navigation-bar img {
  padding-top: 3px;
  width: 35px;
  height: auto;
}
#navigation-bar div:hover {
  border: 0.5px black solid;
}
#navigation-bar div:hover::before {
  right: 0;
  left: 0;
}

.supported-devices{
  display: none;
  text-align: center;
  top: 25%;
  width: 100%;
  height: 50%;

  position: absolute;
  z-index: 9999;
  font-size: 2.5em;
}