body {
  margin: 0;
  overflow: hidden;
  background: black;
}

/* SPACE BACKGROUND */
.space {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;

  background: url('Imgs/Space.jpg') repeat;
  animation: spaceMove 60s linear infinite;
}

@keyframes spaceMove {
  from { background-position: 0 0; }
  to   { background-position: 0 2000px; }
}

/* TWINKLE CANVAS */
#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* CENTER */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* LETTUCE FLOAT */
.lettuce {
  width: 200px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-40px); }
  100% { transform: translateY(0px); }
}

#warp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Push twinkle stars slightly above */
#stars {
  z-index: 0;
}