* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}

.container {
  text-align: center;
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  margin-bottom: 50px;
}

h1 {
  font-size: 3em;
  background: linear-gradient(45deg, #FF4040, #007bff, #00CFFF, #32CD32);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient 3s ease infinite;
  margin-bottom: 20px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

p {
  margin-bottom: 30px;
  color: #666;
}

input {
  padding: 12px;
  margin-bottom: 20px;
  width: 100%;
  border: 2px solid #007bff;
  border-radius: 5px;
  background-color: #f2f2f2;
  color: #333;
  font-size: 1em;
}

button {
  padding: 12px 20px;
  background-color: white;
  border: 2px solid #007bff;
  border-radius: 5px;
  color: #007bff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

button:hover {
  background-color: #007bff;
  color: white;
}

.create-section, .join-section {
  margin-bottom: 20px;
}

footer {
  width: 100%;
  background-color: #f2f2f2;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}

.footer-links a {
  color: #007bff;
  margin: 0 15px;
  text-decoration: none;
  font-size: 1em;
}

.footer-links a:hover {
  text-decoration: underline;
}
