@font-face {
    font-family: 'DynaPuff';
    /* Adding the / at the start tells the browser to start from your main site folder */
    src: url('/style/DynaPuff.ttf') format('truetype');
}

body {
  background-image: url('../images/bg_arcade.png');
  background-repeat: repeat;
  background-position: 50% -240px;
  background-attachment: fixed;
  font-size: 18px;
  font-family: "DynaPuff", system-ui, sans-serif;
  margin: 0;
}

p {
  line-height: 1.6em;
}

#content li {
  line-height: 1.6em;
}

a:hover, a:focus {
  background-color: #FE2DFF;
}

img {
  max-width: 100%;
  height: auto;
}

.right {
  float: right;
  margin-left: 1em;
}

.left {
  float: left;
  margin-right: 1em;
}

.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}

.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

hr {
  border-width: 5px 0 0 0;
  border-style: dotted;
  border-color: #00ff22; 
}

#container {
  margin: 3em auto;
  width: 90%;
  max-width: 700px;
  background-color: white;
  color: #4b29cf; 
  border-radius: 30px 30px 20px 20px;
  overflow: hidden;
  box-shadow: 0 -2px 10px 0 #4b29cf inset;
}

#content {
  padding: 10px 5% 20px 5%;
}

/* HEADER STYLE */
#header {
  position: relative;
  background-color: #7500db; /* Fixed the double ## here */
  padding: 0 5%;
  border-color: #ff75af;
  border-style: solid;
  border-width: 0 0 5px 0;
  background-clip: padding-box;
  box-shadow: 0 -2px 12px 0 #7500db inset;
  -moz-border-radius: 20px; 
}

#header ul {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin-bottom: 1em;
  margin-top: 1em;
}

#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.7em;
  margin-top: 0.7em;
}

#header li a {
  color: white;
  background-color: #4b29cf;
  border-radius: 25px;
  border: 3px solid #4b29cf;
  padding: 6px 30px;
  box-shadow: 0 -2px 12px 0 #4b29cf inset;
  text-transform: uppercase;
  text-decoration: none;
}

#header li a:hover {
  background-color: #FE2DFF;
  text-decoration: none;
}

#header li a:active {
  background-color: #4b29cf;
  text-decoration: none;
  box-shadow: 0 -2px 12px 0 #FE2DFF inset;
}

#header:after {
    position: absolute;
    right: 5%;
    bottom: -27px;
    content: '';
    background-color: #FE2DFF;
    box-shadow: 0 -1px 8px 0 #FE2DFF inset;
    border-radius: 50%;
    border: 5px solid #FE2DFF;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

#postlistdiv ul, #recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}

.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

#disqus_thread {
  margin-top: 1.6em;
}

#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}
/* Removed the extra } that was here */