/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}

body .banner {
  position: sticky;
  top: 0;
}

.banner {
  background-color: black;
  width: 100vw;
  overflow: hidden;
  border-bottom: 5px solid white;
}

.banner .container {
  flex-wrap: nowrap;
  display: flex;
}

#icon {
  margin: 10px;
  display: inline-flex;
  justify-self: left;
  float: left;
}

#right-button {
  display: inline-flex;
  float: right;
  margin: 20px;
  justify-self: right;
}

#center-tag {
  font-family: "Permanent Marker", cursive;
  color: white;
  display: inline-flex;
  float: center;
  margin: auto;
  justify-self: center;
  align-self: center;
}
