
body {
  background-color: black;
  color: white;
  font-family: "Times New Roman";
}


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

/* ===== MOVING BACKGROUND ===== */
.pan-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Gridbg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  animation: panUp 10s linear infinite;
}

.layer2 {
  top: 100%;
}

@keyframes panUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* ===== FOREGROUND CONTENT ===== */
.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  margin-top: 20vh;
  font-family: sans-serif;
}

.content img {
  width: 200px;
  margin-top: 20px;
  border-radius: 10px;
}
