body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-image: url("https://static.vecteezy.com/system/resources/previews/036/078/641/original/pixel-art-illustration-space-background-pixelated-space-space-galaxy-universe-background-pixelated-for-the-pixel-art-game-and-icon-for-website-and-video-game-old-school-retro-vector.jpg"); /* Replace with your GIF path */
  background-size: cover; /* Make the GIF fit the screen */
  background-repeat: no-repeat; /* Prevent the GIF from repeating */
  background-attachment: fixed; /* Keep the GIF still as the user scrolls */
}

header {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  color: #fff;
  padding: 5px 0;  /* Reduced padding for a more compact look */
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100; /* Make it stay on top */
  display: flex;
  justify-content: space-between; /* Space between the elements */
  align-items: center; /* Center the content vertically */
}

.container {
  display: flex;
  justify-content: space-between; /* Center the content horizontally */
  align-items: center; 
  /* You can remove this as we'll center the content directly in the header */
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto; */
}

.logo {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-align: center; /* Center the text within the logo */
  font-size: 2em; /* Make the text bigger */
}

.social-icons {
  display: flex;
}

.icon {
  width: 24px; /* Adjust the icon size as needed */
  height: 24px; /* Adjust the icon size as needed */
  margin-left: 10px; /* Add spacing between icons */
}