Changed around line 1
+ :root {
+ --primary-color: #ff6b6b;
+ --secondary-color: #4ecdc4;
+ --tertiary-color: #ffe66d;
+ --background-color: #1a1a1a;
+ --text-color: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ background-color: var(--background-color);
+ color: var(--text-color);
+ font-family: 'Arial', sans-serif;
+ min-height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ }
+
+ .container {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .hero {
+ position: relative;
+ overflow: hidden;
+ padding: 2rem;
+ border-radius: 20px;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
+ }
+
+ .title {
+ font-size: 4rem;
+ font-weight: bold;
+ margin-bottom: 2rem;
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
+ }
+
+ .animation-container {
+ position: relative;
+ height: 200px;
+ width: 100%;
+ }
+
+ .circle {
+ position: absolute;
+ border-radius: 50%;
+ animation: float 6s infinite ease-in-out;
+ }
+
+ .circle-1 {
+ width: 100px;
+ height: 100px;
+ background-color: var(--tertiary-color);
+ top: 20%;
+ left: 10%;
+ animation-delay: 0s;
+ }
+
+ .circle-2 {
+ width: 80px;
+ height: 80px;
+ background-color: var(--primary-color);
+ top: 50%;
+ left: 50%;
+ animation-delay: 2s;
+ }
+
+ .circle-3 {
+ width: 120px;
+ height: 120px;
+ background-color: var(--secondary-color);
+ top: 10%;
+ left: 70%;
+ animation-delay: 4s;
+ }
+
+ @keyframes float {
+ 0%, 100% {
+ transform: translateY(0);
+ }
+ 50% {
+ transform: translateY(-20px);
+ }
+ }
+
+ .footer {
+ margin-top: 2rem;
+ font-size: 0.9rem;
+ color: rgba(255, 255, 255, 0.7);
+ }
+
+ @media (max-width: 768px) {
+ .title {
+ font-size: 3rem;
+ }
+
+ .circle-1, .circle-2, .circle-3 {
+ width: 80px;
+ height: 80px;
+ }
+ }