#top-banner {
  background-color: navy;
  width: 100%;
  top: 0;
  padding: 0.6rem;
  display: flex;
  flex-direction: row;
  color: white;
  align-items: center;
  justify-content: space-evenly;
  margin: 0;
}

#top-banner h2 {
  font-size: 3.6rem;
  background-color: navy;
  color: white;
  border: 4px solid navy;
  border-radius: 1.6rem;
  padding: 0.4rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  width: max-content;
}

#top-banner h2:hover {
  background-color: white;
  color: navy;
}

#flavors {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#usuals, #weeklys {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-grow: 1;
  justify-content: space-evenly;
  margin: 1.6rem;
  width: 50%;
  height: fit-content;
}

#weeklys {
  background-color: #F08080;
  color: white;
}

#usuals span, #weeklys span {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.0rem;
  margin: 1.6rem;
}

#flavors div span h1{
  font-size: 4.0rem;
}

#flavors div span p{
  font-size: 2.2rem;
}

@media (max-width: 48rem) {
  #flavors {
    flex-direction: row;
  }

  #usuals, #weeklys {
    flex-direction: column;
    justify-content: space-evenly;
  }

  #weeklys span, #usuals span {
    flex-direction: column;
  }

  #flavors div span h1, #flavors div span p{
  margin: 0;
  padding: 1.0rem;
  }

  #top-banner , #top-banner h2{
    visibility: hidden;
    display: none;
  }
}