* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*-----main content----*/
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  background-color: #2e1302;
  background-image: url('bg.jpg'); /* Make sure the path is correct! */
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  color: #d9b406;
  text-align: center;
}

.heading p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  opacity: 0.7;
}

.heading h1 {
  font-family: "Didone", "Georgia", serif;
  font-style: italic;
  font-size: 100px;
  opacity: 0.4;
}

.image-trail {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 100px;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.5;
  filter: grayscale(60%);
}

@media (max-width: 1000px) {
    .image-trail {
        width: 160px;
        height: 160px;
        opacity: 0%;
    }
}

/*-------json data vis----------*/
html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      color: #2e1302;
      overflow: hidden;
    }

    .text-visualizer {
      position: absolute;
      width: 200%;
      height: 200%;
      line-height: 2em;
      font-size: 0.5em;
      animation: scrollText 20s linear infinite;
      opacity: 0.8;
    }

    @keyframes scrollText {
      0% {
        transform: translate(0, 0);
      }
      100% {
        transform: translate(0, -100%);
      }
    }