@import url('https://fonts.googleapis.com/css?family=Bangers');
@tailwind base;
@tailwind components;
@tailwind utilities;

html,
body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  background-color: black; /* Updated background color */
  color: white; /* Updated text color */
}

#main {
  margin: 45px;
}

#epileptic-warning {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 50px auto;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px; /* Added padding */
}

#epileptic-warning h2 {
  font-family: 'Bangers', cursive;
  font-size: 24px;
}
#epileptic-warning #accept-button {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: none;
  margin-top: 10px;
}

#epileptic-warning #accept-button:hover {
  background-color: white;
  color: black;
  border-color: white;
  text-decoration: none;
}



.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/back.gif");
  background-repeat: repeat;
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

.rainbow-text {
  font-family: 'Bangers', cursive;
  text-shadow: 3px 3px 12px rgba(255, 255, 255, 0.4), 2px 2px 2px rgba(255, 255, 255, 0.5);
  margin: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 50px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  text-align: center;
}

.center {
  display: block;
  margin: 0 auto;
}

.feet {
  position: fixed;
  bottom: 0;
  width: 100%;
  color: white;
  background-color: black;
}

.imager {
	padding:15px;
  background-color: black;
}
.imager p {
	text-align:center;
}

li {
  display: block;
  float: left;
  width: 150px;
  height: 20px;
  padding: 5px;
  padding-bottom: 15px;
}

a {
  color: #ff00ff;
}

a:visited {
  color: #ffff00;
}

a:hover {
  color: #00ff00;
}

#playButton {
  /* your styles here */
  position: absolute;
  right: 0;
  background-color: #ff00ff;
  color: #00ffff;
  border: 2px solid #ffff00;
  border-radius: 10px;
  padding: 10px;
  font-size: 8px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#playButton:hover {
  /* your styles here */
  background-color: #ffff00;
  color: #ff00ff;
  border-color: #00ffff;
  text-decoration: line-through;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}


.rainbow-glow {
  position: relative;
}

.rainbow-glow img {
  display: block;
}

@keyframes rainbow-glow-animation {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  100% {
    background-position: 100% 50%;
    filter: hue-rotate(360deg);
  }
}

.rainbow-glow-animate::after {
  animation: rainbow-glow-animation 2s infinite;
}

.rainbow-glow img {
  display: block;
}

  /* Styling for the hit count section */
  .hits {
    background-color: #ff0000;
    color: #ffffff;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
  }
  
        .dance-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .dance-gif {
            width: 200px; /* Adjust the width as needed */
            margin: 10px; /* Adjust the margin as needed */
        }
		.dance-gif img{
		max-width:150px;
		}