/* styles.css */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: white;
  overflow: hidden;
}

.container {
  text-align: center;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar {
  position: absolute;
  top: 20px;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 30px;
	
}

.navbar a:hover {
  color: #a78cf7;
}

.main-content h1 {
  font-size: 6rem;
}

.highlight {
  color: #a78cf7;
}

.main-content p {
  margin: 10px 0 20px;
  font-size: 1.6rem;
}

.join-btn {
  position: relative;
  z-index: 3; /* El botón estará por encima de todo lo demás */
  background: linear-gradient(to right, #6a11cb, #2575fc);
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 1.2em;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
  width:400px;
  height:60px;
}

.join-btn:hover {
  opacity: 0.9;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.curves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #a78cf7, transparent);
}

.circle1 {
/* Ellipse 2111 */

position: absolute;
width: 440px;
height: 440px;
right: 10px;
top: 227px;

background: radial-gradient(50.53% 50% at 50% 50%, #BA29D2 0%, #0880C7 50%, #212121 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

}

.circle2 {
 /* Ellipse 2112 */

position: absolute;
width: 304px;
height: 304px;
right: 500px;
top: 515px;

background: radial-gradient(45.13% 44.66% at 50% 50%, #BA29D2 0%, #0880C7 50%, #212121 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

}
