nmrghe commited on
Commit
c05c42f
·
verified ·
1 Parent(s): d015dcc

change the image on the home page to reflect neural dynamics and behavior

Browse files
Files changed (2) hide show
  1. index.html +2 -2
  2. style.css +11 -0
index.html CHANGED
@@ -30,13 +30,13 @@
30
  <span class="text-indigo-600">M</span>apping <span class="text-indigo-600">I</span>ntell!gent behavior onto<br>
31
  <span class="text-indigo-600">N</span>eural <span class="text-indigo-600">D</span>ynamics
32
  </h1>
33
- <p class="text-xl text-gray-600 mb-6">At the M!ND Research Group, we bridge cognitive science and neuroscience to understand how intelligence emerges from neural activity.</p>
34
  <a href="projects.html" class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-6 rounded-lg transition duration-300 inline-flex items-center">
35
  Our Projects <i data-feather="arrow-right" class="ml-2"></i>
36
  </a>
37
  </div>
38
  <div class="md:w-1/2">
39
- <!-- Hero image removed -->
40
  </div>
41
  </div>
42
  </section>
 
30
  <span class="text-indigo-600">M</span>apping <span class="text-indigo-600">I</span>ntell!gent behavior onto<br>
31
  <span class="text-indigo-600">N</span>eural <span class="text-indigo-600">D</span>ynamics
32
  </h1>
33
+ <p class="text-xl text-gray-600 mb-6">At the M!ND Research Group, we bridge cognitive science and neuroscience to understand how intelligence emerges from neural activity through computational modeling and neuroimaging.</p>
34
  <a href="projects.html" class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-6 rounded-lg transition duration-300 inline-flex items-center">
35
  Our Projects <i data-feather="arrow-right" class="ml-2"></i>
36
  </a>
37
  </div>
38
  <div class="md:w-1/2">
39
+ <img src="http://static.photos/technology/640x360/42" alt="Neural Dynamics Visualization" class="rounded-lg shadow-xl border border-gray-200">
40
  </div>
41
  </div>
42
  </section>
style.css CHANGED
@@ -63,6 +63,17 @@ body {
63
  ::-webkit-scrollbar-thumb:hover {
64
  background: #555;
65
  }
 
 
 
 
 
 
 
 
 
 
 
66
 
67
  /* Animation classes */
68
  .fade-in {
 
63
  ::-webkit-scrollbar-thumb:hover {
64
  background: #555;
65
  }
66
+ /* Hero image styling */
67
+ .hero img {
68
+ max-width: 100%;
69
+ height: auto;
70
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
71
+ }
72
+
73
+ .hero img:hover {
74
+ transform: scale(1.02);
75
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
76
+ }
77
 
78
  /* Animation classes */
79
  .fade-in {