@font-face {
  font-family: Pokeds; /* set name */
  src: url(https://file.garden/ZvZ4vyE050beWbUU/Neocities/fonts/pokeds.woff); /* url of the font */
}

@font-face {
  font-family: omori; /* set name */
  src: url(https://file.garden/ZvZ4vyE050beWbUU/Neocities/fonts/OMORI_GAME.woff); /* url of the font */
}


body {
background-color: #000000;
background-image: url("https://file.garden/ZvZ4vyE050beWbUU/Neocities/Backgrounds/stars%204.gif");
font-family: pokeds;
font-size: 10px;
letter-spacing: 1px;
word-spacing: -0.4px;
color: #FFFFFF;
font-weight: 700;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: lowercase;
}

.box1 {
  width: 200px;
  height: 400px;
  border: 5px;
  border-style: dashed;
  border-color: black;
  background-color: white;
  padding: 5px;
  margin: 10px;
  float: right;
  overflow: scroll;
}
.box2 {
  width: 1080px;
  height: auto;
  border: 5px;
  border-style: dashed;
  border-color: black;
  background-color: white;
  padding: 5px;
  margin: 10px;
  overflow: scroll;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
 body {
    cursor: url("cursor.png"), auto;
}




.container {
  overflow: hidden;
  white-space: nowrap;
}

.scrolling {
  animation: marquee 2s linear infinite;
  display: inline-block;
  padding-right: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to { 
    transform: translateX(-100%);
  }
}