body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #1a1a1a;
}

header {
  background-color: #1f2937;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  height: 40px;
  margin-right: 15px;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #60a5fa;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  height: 600px;
  overflow: hidden;
}

.slideshow-container h2 {

  text-align: center;
}

.slide {
  display: none;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
}

.active-slide {
  display: block;
}

.slide-text {
  position: absolute;
  bottom: 20px;
  left: 40px;
  color: white;
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.main-section {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 40px;
}

.content {
  flex: 2;
}

.news-column {
  flex: 1;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.news-column h3 {
  margin-top: 0;
}

.news-item {
  margin-bottom: 15px;
}

.container {
  /*max-width: 1000px;*/
  max-width: 80%;
  margin: 40px auto;
  padding: 0 20px;
}

.project {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.project h3 {
  margin-top: 0;
}

.topic {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.topic h3 {
  margin-top: 0;
}

.publication {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.publication h3 {
  margin-top: 0;
}
.publication p {
  margin: 5px 0;
}

/*team page*/
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.team-grid  li{
  list-style-type: none;
}

.memberonly {
  background: white;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  /*max-width: 60%;*/
  align-items: center;
}
.memberonly img {
  /* float: left; */
  width: 400px;
  height: auto;
  /*margin-right: 20px;*/
  border-radius: 8px;
  align-items: center;
}
.member {
  background: white;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.member img {
  /* float: left; */
  width: 200px;
  height: auto;
  /*margin-right: 20px;*/
  border-radius: 8px;
}
.member h3 {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.member p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}

.container li{
  list-style-type: none;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #e5e7eb;
  color: #4b5563;
  font-size: 0.9rem;
  margin-top: 60px;
}
