body{
  background-color: white;
  Font-family: Helvetica, Arial, sans-serif;
}

a{
  text-decoration: none;
}

hl,h2,h3{
  margin: 0;
}

#container{
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#header {
  padding: 10px;
  background-color: #5D3F6A;
  text-align: center;

  /* Add background image */
  background-image: url('https://katt-n-domino.neocities.org/Sketchezzbackground.png'); /* replace with your image path */
  background-size: cover; /* fills the box and crops overflow */
  background-position: center; /* centers the image */
  background-repeat: no-repeat;
}

#content {
  padding: 10px;

}

#nav{
  clear: both;
  width: 650px;
  float: left;
  color: black;
}

#nav .selected{
  font-weight:bold;
}

#nav ul{
  list-style-type: none;
  padding: 0;
}

#main {
  width: 700px;
  float: left;
  color: black;
}

#animation {
    display: inline-block;   /* Shrinks to fit content */
    max-width: 100%;         /* Responsive width */
    height: auto;            /* Auto height */
    margin: 0 auto;          /* Center it horizontally */
    position: relative;      /* For safe positioning */
    overflow: hidden;        /* Prevent invisible overflow blocking clicks */
    z-index: 0;               /* Keep it behind other elements */
}

#animation img {
    display: block;
    max-width: 100%;
    height: auto;
}

#footer{
  clear: both;
  padding: 10px;
  background-color: #999;
  color: white;
  text-align: center;
  
}