/* Apply the same font to all pages */
html, body {
  font-family: 'Quicksand', sans-serif;  /* Ensure the font is applied universally */
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto; /* Allow scrolling vertically, but not horizontally */
}

/* General styling for the body */
body {
  background-color: black;
  color: white;
  background-image: url('BG0.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 0 20px; /* Reduced padding to prevent overflow */
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;  /* Ensure the page height fills the viewport */
  display: flex;
  flex-direction: column;
}

/* Specific styling for the image with the ID 'cloop-album-image' */
#cloop-album-image {
  border: 2px solid white; /* Adds a white border */
  border-radius: 4px; /* Optional: to round the corners */
  margin-bottom: 20px; /* Prevent the image from getting too close to other content */
}

/* Position the eel GIF in the bottom-left corner */
#eel-gif {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 150px;  /* You can adjust the width */
  height: auto;
  margin: 10px;  /* Optional: for some space from the edges */
}

/* Logo container positioning */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  width: 100%;
}

/* Logo text positioning */
.logo-text {
  font-size: 12px;
  color: white;
  margin-left: 10px;
  text-align: left;
}

/* Title and introductory text styling */
h2 {
  margin-top: 20px;
  padding: 0 10px;
  font-size: 24px;
}

h3 {
  margin: 20px 0 10px 0; /* Adds space above, removes gap below */
  font-size: 20px;
}

/* Paragraph styling */
p {
  margin: 15px 0;
  line-height: 1.5;
  padding: 0 10px;
  max-width: 1200px;  /* Ensure text doesn't stretch too wide */
}

/* Table styling without borders */
table {
  width: 80%;
  margin: 0 auto; /* Remove top margin to bring it closer to heading */
  border-collapse: collapse;
  text-align: left;
}

/* Remove borders for table cells */
table td {
  padding: 8px;
}

/* Styling for links */
a {
  color: white;
  text-decoration: none;
  margin: 5px;
}

a:hover {
  color: #bbb;
}
/* Slider container */
.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Slide images */
.slides {
  display: none;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 2px solid white;
  border-radius: 4px;
}

/* Active slide */
.slides.active {
  display: block;
}

/* Navigation arrows */
.arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 24px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}
