/* style.css */

/* Custom styles for Dr. Marcos Hideo Maruo website */

body {
  scroll-behavior: smooth;
}

h2 {
  color: #1e3a8a; /* dark blue */
}

ul li:hover {
  transform: translateY(-2px);
  transition: transform 0.2s;
}

/* Publications list hover effect */
ul.publications li:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Optional: style links */
a {
  color: #1d4ed8;
}
a:hover {
  text-decoration: underline;
}

.profile-pic {
  width: 80px;  /* adjust as needed */
  height: 80px;
  border-radius: 50%;
}
