body {
  background-image: url(https://w4skele.neocities.org/images/background/background.gif);
  cursor: url(https://i.imgur.com/lxrVAxU.png), auto;
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  margin: 0;
}

#content {
  width: 1380px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
}

.vine {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px; /* Adjust to your vine image’s width */
  background-image: url("images/general/ballicon.png"); /* adjust path if needed */
  background-repeat: repeat-y;
  background-size: auto;
  z-index: 0;
  pointer-events: none;
}

.left-vine {
  left: 0px; /* Overlap half */
}

.right-vine {
  right: 0px; /* Overlap half */
}

.banner {
  width: 99%;
  height: 250px;
  background-image: url(https://w4skele.neocities.org/images/general/darksky.jpg);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 10px ridge darkgrey;
}

.bar {
  background: linear-gradient(skyblue, white);
  border: 1px solid #000;
  border-top: none;
  border-bottom: none;
  width: 100%;
}

.bar-item {
  cursor: pointer;
  color: black;
  font-size: 25px;
  padding: 25px;
}

.one {
  padding: 5px;
  border: 5px ridge white;
  background: linear-gradient(white, black);
  position: fixed;
  bottom: 0;
  right: 0;
}

.scroll {
  border: 1px solid black;
  background: linear-gradient(black, black);
  margin: auto;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
  animation: glow 1.5s infinite alternate;
}

.column {
    width: 339px;
    float: left;
    background-image: url(https://w4skele.neocities.org/images/background/stars.gif);
    border: 1px solid #fff;
    min-height: 1800px;
    padding: 2px;
    text-align: center;
    color: white;
}

.column-left {
    border-right: none;
}

.column-right {
    border-left: none;
}

.columns {
    border: 1px solid #000;
}

div {
    display: block;
    unicode-bidi: isolate;
}

.table1 {
  border: 2px ridge white;
  font-family: comic;
  font-size: 0.8rem;
  letter-spacing: 1px;
  background-image: url("https://w4skele.neocities.org/images/background/movingclouds.gif");
  color: white;
  width: 500px;
  padding: 5px;
  margin: 20px auto;
}

.table2 {
  border: 2px ridge white;
  font-family: comic;
  font-size: 0.8rem;
  letter-spacing: 1px;
  background-image: url("images/background/stars.gif");
  color: white;
  width: 1000px;
}

h3 {
    display: block;
    font-size: 1.17em;
    font-weight: bold;
    unicode-bidi: isolate;
}

p {
    display: block;
    unicode-bidi: isolate;
    font-size: 1em;
}
h1 {
    display: block;
    font-size: 2em;
    font-weight: bold;
    unicode-bidi: isolate;
}

.marquee-container {
  border: 1px solid black;
  background: linear-gradient(black, black);
  margin: auto;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
  animation: glow 1.5s infinite alternate;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-content {
  display: inline-block;
  animation: scroll-left 55s linear infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

