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

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: rgb(226, 226, 226);
  color: #111;
  line-height: 1.4;
  height: 100%;

}



.floating-nav {
  position: fixed;
  margin-left: 4vw;
  margin-top: 1rem;


}

.floating-nav nav {
  display: flex;
  gap: 2.5rem;

}

.floating-nav nav a {
  display: inline;
  font-size: 1.1rem;
  text-decoration: none;
  color: rgb(63, 63, 63);
  text-transform: lowercase;
  transition: opacity 0.2s;

}

.floating-nav nav a:hover {
  opacity: 0.6;
}

.cargo-layout {
  /* padding: 8rem 2rem 4rem; */
  padding-top: 100px;
  margin-left: auto;
  margin-right: auto;
  /* max-width: 1600px; */
}

.statement {
  display: flex;
  flex-direction: column;

}

.top-box {
  height: 60vh;
  display: flex;
  color: rgb(63, 63, 63);

  align-items: center;
  justify-content: flex-start;
  padding-left: 4vw;
  font-size: 2.5rem;
  text-transform: lowercase;
  max-width: 1600px;

}

.top-box p {
  font-family: monospace;
  font-size: 3.5rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid rgb(63, 63, 63);
  /* optional blinking cursor */
  width: 0;
  animation: type 1.5s steps(10, end) forwards;
}

@keyframes type {
  from {
    width: 0;
  }

  to {
    width: 9ch;
    /* Adjust based on character count */
  }
}

@keyframes blink {

  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: rgb(63, 63, 63);
  }
}

.top-box p {
  animation: type 1.5s steps(10, end) forwards, blink 1s step-end infinite;
}

.bottom-box {
  height: 20vh;
  padding-left: 4vw;
  font-size: 1.5rem;
  color: rgb(63, 63, 63);
  align-items: center;
  justify-content: flex-start;
  display: flex;

}

.bottom-box p {
  font-size: 18px;
  line-height: 1.6;
  margin-top: auto;
  margin-bottom: auto;
  /* padding-bottom: 90px; */
}

.gallery {
  /* background: rgba(17, 17, 17, 0.922); */
  padding: 2rem 1rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* max-width: 1200px; */
  margin: 0 auto;
  /* height: 100vh; */
}

.block.full {
  text-align: left;
}

.block.full img {
  width: 100%;
  max-width: 1200px;
  /* Or whatever fits your aesthetic */
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 4px;

}

.block.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.artist img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.name {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
  width: 100%;
  max-width: 1200px;
  /* Or whatever fits your aesthetic */
  height: auto;
  margin: 0 auto;
  object-fit: cover;
  color: rgb(63, 63, 63);

}

.name span {
  color: #aaa;
  font-size: 0.85rem;
}





.footer {
  padding: 40px 20px;
  font-family: sans-serif;
  font-size: 14px;
  background: #fff;
  background: rgb(226, 226, 226);
  border-top: 1px solid #ddd;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 40px;


}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

}

.footer-column strong {
  color: #000;
  font-weight: 600;
}

.footer-column a {
  text-decoration: none;
  color: #777;
}

.footer-column a:hover {
  color: #000;
  text-decoration: underline;
}

.footer-bottom {
  font-size: 13px;
  color: #999;
  text-align: center;

}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}