body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #1a1a1a; /* Dark background color */
  color: #fff; /* Light text color */
  font-family: Arial, sans-serif;
}

.rainbow-header {
  background-color: rgba(0, 0, 0, 0.3); /* Slight background color */
  padding: 10px; /* Padding around the header */
  text-align: center;
  margin: 0;
  font-size: 2rem; /* Adjust font size as needed */
  animation: rainbow 5s infinite; /* Adjust duration as needed */
}

@keyframes rainbow {
  0% {
    color: red;
  }
  15% {
    color: orange;
  }
  30% {
    color: yellow;
  }
  45% {
    color: green;
  }
  60% {
    color: blue;
  }
  75% {
    color: indigo;
  }
  100% {
    color: violet;
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px); /* Adjust for header height and padding */
  overflow: hidden; /* Prevents scroll bars */
}

.seal-container {
  max-width: 100vw;
  max-height: 100%;
  overflow: hidden;
  margin: 20px; /* Adds some margin around the seal */
}

.seal-container img {
  max-width: 100%;
  max-height: 100%;
}

.controls {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

#muteButton {
  color: #fff;
  background-color: #333;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#muteButton:hover {
  background-color: #555;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin: auto 25px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin: auto 5px;
}

.social-icons a:hover {
  transform: scale(1.2); /* Increases size on hover */
}

.social-icons i {
  font-size: 24px; /* Adjust icon size */
  color: #fff; /* Icon color */
}
