Changed around line 1
+ :root {
+ --primary: #2ecc71;
+ --secondary: #27ae60;
+ --background: #f0fff4;
+ --text: #2c3e50;
+ --accent: #e74c3c;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 100;
+ }
+
+ nav ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ padding: 1rem;
+ }
+
+ nav a {
+ color: var(--text);
+ text-decoration: none;
+ padding: 0.5rem 1rem;
+ margin: 0 1rem;
+ border-radius: 20px;
+ transition: all 0.3s ease;
+ }
+
+ nav a:hover, nav a.active {
+ background: var(--primary);
+ color: white;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .frog-container {
+ width: 200px;
+ height: 200px;
+ position: relative;
+ margin-bottom: 2rem;
+ }
+
+ .frog {
+ width: 100%;
+ height: 100%;
+ background: var(--primary);
+ border-radius: 50%;
+ position: relative;
+ animation: bounce 2s infinite ease-in-out;
+ }
+
+ .eyes {
+ position: absolute;
+ top: 30%;
+ width: 100%;
+ display: flex;
+ justify-content: space-around;
+ }
+
+ .eye {
+ width: 30px;
+ height: 30px;
+ background: white;
+ border-radius: 50%;
+ position: relative;
+ }
+
+ .eye::after {
+ content: '';
+ position: absolute;
+ width: 15px;
+ height: 15px;
+ background: black;
+ border-radius: 50%;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ }
+
+ .gallery {
+ padding: 4rem 2rem;
+ }
+
+ .frog-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .frog-card {
+ background: white;
+ border-radius: 15px;
+ padding: 1rem;
+ text-align: center;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ cursor: pointer;
+ }
+
+ .frog-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .frog-image {
+ height: 200px;
+ border-radius: 10px;
+ margin-bottom: 1rem;
+ }
+
+ .frog-image.green { background: var(--primary); }
+ .frog-image.red { background: var(--accent); }
+ .frog-image.blue { background: #3498db; }
+
+ .facts {
+ padding: 4rem 2rem;
+ background: white;
+ }
+
+ .fact-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .fact {
+ background: var(--background);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ }
+
+ .fact:hover {
+ transform: scale(1.05);
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary);
+ color: white;
+ }
+
+ @keyframes bounce {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ @media (max-width: 768px) {
+ nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ nav a {
+ margin: 0.5rem 0;
+ }
+
+ .hero {
+ padding-top: 6rem;
+ }
+ }