/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("https://dl.glitter-graphics.com/pub/3766/3766189ybvepk1x5j.gif") ; 
  text-align: center;
  
.chewy-regular {
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
}


  
  .container {
  width: 570px;
  min-height: 100px;
  margin: auto;
}
  
nav {
  background-color: #653A8F;
  text-align: center;
  overflow: hidden; /* Added for better handling of content */
  
}

nav ul {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Added for better handling of content */
}

nav li {
  float: left; /* Changed to float for horizontal layout */
}

nav li a {
  font-family: verdana;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.patrick-hand-regular {
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-style: normal;
}


nav li a:hover {
  background-color: #EAA4DD;
}
}