@import url('https://fonts.cdnfonts.com/css/request-coffee');

body {
  background: url('/assets/images/static/pngtree_page_bg.png') repeat;
  margin: 0;
  padding: 0;
  font-family: 'Special Elite', monospace;
  color: #ffffff;
  text-align: center;
}

/* Main container with flexbox for layout */
.page-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.middle-container {
  max-width: 800px;
  margin: 0 10px;
  /* Added horizontal margin for spacing */
  padding: 10px;
  border: 5px double #ff00ff;
  background: rgba(0, 0, 0, 0.9);
  flex-grow: 1;
  /* Allows it to grow within the flexbox container */
}

.left-container,
.right-container {
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;

  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
}

/* Additional styles for specific elements */

/* Table-like style */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

/* Navigation links */
nav a {
  margin: 5px;
  color: #ffcc00;
  text-decoration: none;
  font-family: 'Press Start 2P', monospace;
}

nav a:hover {
  color: #ff00ff;
}

/* Rainbow text */
.rainbow-text {
  background-image: linear-gradient(to right, violet, indigo, blue, green, yellow, orange, red);
  -webkit-background-clip: text;
  color: transparent;
}

.sidebar-text-thing {
  font-family: 'Request Coffee', sans-serif;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 0 10px #778fde;
  padding: 10px;
  background: #778fde82;
}

.sidebar-text-thing a {
  color: #fff;
  display: block;
  margin: 5px;
}

.marquee {
    display: inline-block; /* Ensures that the element is treated as inline text */
    white-space: nowrap; /* Prevent the text from wrapping onto new lines */
    overflow: hidden; /* Hide the text outside of the container */
    width: 100%; /* Optional: Adjust the width of the container */
}

.marquee-text {
    display: inline-block; /* Keep the text on one line */
    animation: marquee-animation 10s linear infinite; /* Apply the scrolling animation */
}

@keyframes marquee-animation {
    0% {
        transform: translateX(100%); /* Start off-screen to the right */
    }
    100% {
        transform: translateX(-100%); /* End off-screen to the left */
    }
}
