body {
  margin: 0;
  background-color: yellow; /* Primary background color */
  background-image: url('Assets/meatwall.png'); /* Background texture */
  background-repeat: repeat; /* Tile background across the page */
  animation: scrollBackground 40s linear infinite;
  color: black;
  font-family: Arial, sans-serif;
  cursor: url('Assets/Cursor.png'), auto; /* Custom cursor */
  overflow: hidden; /* Prevents scroll bars */
  position: relative;
}

.background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  z-index: -1;
}

.centered-text {
  text-align: center; /* Centers text horizontally */
  margin-top: 0; 
  padding-top: 20px; 
  width: 100%;
}

@keyframes scrollBackground {
  from { background-position: 0 0; }
  to { background-position: 100% 0; }
}

/* Text meant to be hidden or redacted */
.redact {
  background-color: black;
  color: black;
  text-shadow: none;
}

@keyframes shake {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  10%, 50%, 90% { transform: translate(-10px, -10px) rotate(-5deg); }
  20%, 60% { transform: translate(10px, 10px) rotate(5deg); }
  30%, 70% { transform: translate(-10px, 10px) rotate(-5deg); }
  40%, 80% { transform: translate(10px, -10px) rotate(5deg); }
}

.shake {
  display: inline-block;
  animation: shake 0.2s infinite;
}

/* Header Bar with Navigation Menu */
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 0, 0.5); /* Yellow transparent background */
  padding: 10px 20px;
}

/* Logo inside the header */
.logo {
  height: 70px; /* Adjust to the size of your logo */
  width: auto; /* Maintain aspect ratio */
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dropdown Button Styling */
.dropbtn {
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: url('Assets/Cursor.png'), auto; /* Custom cursor */
  background-color: #ffd700; /* Gold color */
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3), rgba(255, 255, 0, 0.3)); /* Shiny effect */
  color: black; /* Text color */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); /* Box shadow for beveled look */
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(255, 255, 0, 0.9); /* Yellow background color with transparency */
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Box shadow for dropdown */
  border-radius: 10px; /* Rounded corners */
  z-index: 1;
  overflow: hidden; /* Ensures children don't overflow the rounded corners */
  right: 10px; /* Add padding to the right */
}

/* Dropdown Item Styling */
.dropdown-content a {
  color: black; /* Text color */
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius: 10px; /* Rounded corners for items */
  text-shadow: -1px 0 #ffd700, 0 1px #ffd700, 1px 0 #ffd700, 0 -1px #ffd700;
  cursor: url('Assets/Cursor.png'), auto; /* Custom cursor */
}

/* Dropdown Hover Styling */
.dropdown-content a:hover {
  background-color: #ffeb3b; /* Lighter yellow on hover */
  border-radius: 10px; /* Ensures the hover effect maintains the rounded corners */
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown Styling */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Custom cursor for interactive elements */
button, a, input, select, textarea {
  cursor: url('Assets/Cursor.png'), auto; /* Custom cursor */
}
