.intro {
  margin-left: 2rem;
}
.post-list, .videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px; /* You can adjust this value to add more or less spacing between your posts */
  margin-top: 20px;
}

.post, .video {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

.post:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.banner video {
  height: auto;
}

nav{
  background: #000C;
}

header.bg-top{
  height: 380px;
}

.title, .articles {
  color: #000;
  margin-left: 2rem;
}

.header h3, .metadata {
  margin-left: 1rem;
}
footer {
 color: #BABABA;
}
footer a.linkback {
  color: #BABABA;
  font-weight: bold;
  text-decoration: none;
}
.pb7 {
  padding-bottom: 0 !important;
}

.nft-drop-banner {
  position: absolute;
  top: 10px;
  left: 100px;
  right: 0;
  width: 30%;
  padding: 10px;
  background-color: #f5f5f5; /* Change to match your design */
  text-align: center;
  z-index: 9999; /* Ensures the banner is on top */
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1); /* Optional: adds a bit of shadow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-banner {
  border: none;
  background: transparent;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 10px;
}
