     @font-face {                  
font-family: 'DepartureMono';
src: url(https://humantooth.neocities.org/fonts/DepartureMono.woff) format('woff');
font-weight: normal;
font-style: normal;
} 

 body {
    background-image: url("https://hunterxdieselxwiki.neocities.org/ruffle/Screenshot%202026-04-02%20055815.png");
    background-size: contain;
  background-position: center; /* Centers the image */
  background-repeat: repeat;
}
.navstrip {
    align-items: stretch;
    background: solid pink;
    border-bottom: 0px purple;
    display: flex;
    font-style: DepartureMono;
    justify-content: space-between;
    overflow: hidden;
    padding: 0;
    width: 100%;
  }

  .navstrip a {
    align-items: center;
    background-color: purple;
    border: 1px purple;
    color: hotpink;
    display: flex;
    flex: 1;
    font-family: DepartureMono;
    font-size: 14px;
    font-weight: bold;
    height: 100%;
    justify-content: center;
    padding: 10px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px purple;
  }

  .navstrip a:hover {
    background-color: pink;
    font-weight: bold;
    text-decoration: none;
    transform: scale(1.12);
    z-index: 1;
  }