/* #banner {
  width: 95%;
  display: grid;
  padding: 2rem 0;
  justify-items: center;
  align-items: center;
  margin: 2.5% 2.5% 0 2.5%;
  background-color: var(--alt-main-color);
  border-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
}

#banner,
#banner::before {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

#banner::before {
  content: "";
  position: absolute;
  background-color: var(--dark-main-color);
  width: 100%;
  height: 100%;
  padding: 0.8%;
  border-radius: 25px;
  z-index: -1;
} 
*/

#banner {
  display: grid;
  justify-items: center;
  align-items: center;
}

#banner > img {
  width: 80%;
}
