* {
    background-color: rgb(25, 3, 18);
}
img {
  -webkit-touch-callout: none; /* Prevents opening the image in the iOS image viewer */
  -webkit-user-select: none; /* Disables text selection on images */
  -moz-user-select: none; /* Firefox support */
  -ms-user-select: none; /* Internet Explorer support */
  user-select: none; /* Prevents text selection on images */
  pointer-events: none; /* Prevents clicking and dragging */
  -webkit-user-drag: none; /* Disables image dragging on WebKit-based browsers */
  user-drag: none; /* General image dragging prevention */
}

.banner {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
}


.body {
    z-index: 100;
    background: rgb(237, 219, 231);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.body h1 {
    color: rgb(224, 130, 153);
    text-align: center;
    background: rgb(237, 219, 231);
}

.body p {
    text-align: center;
    background: rgb(237, 219, 231);
}

.body a  {
    text-align: center;
    background: rgb(237, 219, 231);
    color: burlywood;
}

figure {
    text-align: center;
    background: rgb(237, 219, 231);
}

figcaption  {
    background: rgb(237, 219, 231);
}

ul.navbar {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  position: sticky;
  background:  rgb(101, 85, 59);
  top: 0;
}

ul.navbar li {
  position: relative;
  display: block;
  font-size: 13px;
}

ul.navbar li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 130px;
  padding: 0;
}

ul.navbar li a {
  text-decoration: none;
  color: rgb(224, 130, 153);
  background: rgb(101, 85, 59);
  padding: 10px 20px;
  display: block;
}

ul.navbar a:hover {
  color: wheat;
}

ul.navbar li:hover > ul {
  display: block;
  z-index: 1000;
}

ul.navbar li:hover > ul li {
    min-width: 150px;
}

ul.navbar li:hover ul ul {
    left: 100%;
    top: 0;
}

ul.navbar li ul li:hover > a {
    color: wheat;
}

ul.navbar li ul li > a {
    color: burlywood;
}