body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  /* Sets the background of the entire page to black */
  color: white;
  /* Sets the text color to white for contrast */
}

.link-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 10px;
}

.link-item {
  background-color: black;
  /* Sets the background of each container to black */
  border-radius: 5px;
  overflow: hidden;
  display: inline-block;
  width: 150px;
  /* Set a fixed width for each link-item */
  height: 150px;
  /* Set a fixed height for each link-item */
}

.link-item img {
  display: block;
  width: 100%;
  /* Ensure the image takes up the full width of its container */
  height: 100%;
  /* Ensure the image takes up the full height of its container */
  object-fit: cover;
  /* Ensures the image covers the full area without distorting aspect ratio */
  transition: transform 0.2s ease-in-out;
}

.link-item:hover {
  transform: scale(1.05);
  /* Slightly increase the size of the container on hover */
}

.tweet-container {
  max-width: 600px;
  /* Adjust as needed */
  margin: 20px auto;
  padding: 0 20px;
}

.header-image {
  max-width: 100%;
  /* Ensure the image fits its container */
}

.header-image img {
  width: 100%;
  /* Make sure the image fills its container */
  height: auto;
  /* Allow the image's height to adjust proportionally */
}


/* Scrollbar sizing */
::-webkit-scrollbar {
  width: 18px;
  height: 16px;
}

/* Thumb (draggable part) */
::-webkit-scrollbar-thumb {
  min-height: 40px;
  /* Set a minimum height for the thumb */
  background:
    url('scrollbar/scroll-thumb.svg') no-repeat center center / 80%,
    linear-gradient(#bcd1f8, #bcd1f8);
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box, padding-box;
  /* Move the thumb slightly to the left */
  margin-left: -2px;
}

::-webkit-scrollbar-thumb:horizontal {
  min-width: 20px;
  /* Set a minimum width for the thumb */
  background:
    url('scrollbar/scroll-thumb-horizontal.svg') no-repeat center center / 80%,
    linear-gradient(#bcd1f8, #bcd1f8);
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box, padding-box;
  /* Move the horizontal thumb slightly to the left if needed */
  margin-left: -2px;
}

/* Track (part the thumb slides within) */
::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

/* Buttons (arrows) */
::-webkit-scrollbar-button {
  background-color: #d4d4d4;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 4px;
}

/* Adjustments for up and down buttons */
::-webkit-scrollbar-button:start:decrement {
  background-image: url('scrollbar/scroll-arrow-up.svg');
  /* Move the up button slightly up and to the left */
  margin-bottom: -2px;
  margin-left: -2px;
}

::-webkit-scrollbar-button:end:increment {
  background-image: url('scrollbar/scroll-arrow-down.svg');
  /* Move the down button slightly down and to the left */
  margin-top: -2px;
  margin-left: -2px;
}

/* Adjustments for left and right buttons */
::-webkit-scrollbar-button:horizontal:start:decrement {
  background-image: url('scrollbar/scroll-arrow-left.svg');
  /* Move the left button slightly to the left and up */
  margin-right: -2px;
  margin-top: -2px;
}

::-webkit-scrollbar-button:horizontal:end:increment {
  background-image: url('scrollbar/scroll-arrow-right.svg');
  /* Move the right button slightly to the right and up */
  margin-left: -2px;
  margin-top: -2px;
}