@font-face {
  font-family: 'gome';
  src: url(https://arine-planet.neocities.org/gomepixel-regular-webfont.woff);
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), 
    url('bg.png');
  background-repeat: repeat;
  
  font-family: "gome";


  animation: continuousScroll 70s linear infinite;
}

@keyframes continuousScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1000px 0;
  }
}

.text {
  margin-top: 90px;
  position: absolute; 
}

h3 {
  margin-top: 345px;
  position: absolute;
  width: 400px;
  font-size: 16px;
}

.feed {
  width: 450px;
  height: 670px;
  border-radius: 12px;
  overflow: hidden; 
  display: grid;
  justify-items: center;
}

img {
  width: 100%;
  height: auto;
  display: block;

  image-rendering: pixelated; 
  image-rendering: crisp-edges;
}

.planet {
  margin-top: 155px;
  position: absolute;
  width: 150px; 
}

.image {
  margin-top: 130px;
  position: absolute;
  background-color: #060606;
  width: 370px;
  height: 200px;
}