@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #ffffff;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  width: 100%;
  height: 100%;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
}

p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

.powered {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(38, 38, 38, 0.5);
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.powered p {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.ellipsis {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: -1;
  animation: float 10s ease-in-out infinite;
}

.ellipsis:nth-child(1) {
  width: 500px;
  height: 500px;
  background: #f44336;
  top: -150px;
  right: 10%;
}

.ellipsis:nth-child(2) {
  width: 500px;
  height: 500px;
  background: #3f51b5;
  bottom: -150px;
  left: 5%;
}

.ellipsis:nth-child(3) {
  width: 500px;
  height: 500px;
  background: #009688;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hidden {
  display: none;
}

.info-boxes {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: auto;
  user-select: text;
}



	


