body{
  max-width:1200px;
  margin:auto;
  font-family: "Palatino Linotype","Book Antiqua",Palatino,serif;
  background:#f7f8fc;
  line-height:1.6;
  padding:40px;
}

#main-content {
    margin-left: 240px; /* Or use transform: translateX(50px); */
    transition: margin-left 0.3s ease;
}

:lang(zh){
  font-family: "KaiTi","STKaiti","Kaiti SC","Songti SC",serif;
}

h1{
  font-size:42px;
  margin-bottom:5px;
}

h2{
  border-bottom:2px solid #ddd;
  padding-bottom:5px;
  margin-top:40px;
}

a{
  color:#2a5db0;
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

.header{
  margin-bottom:40px;
}

.mybold {
    color: purple;
    font-weight: bold;
}

.venue {
    color: purple;
    font-style: italic;
}

h1, p {
    text-align: center;
}

 
.profile{
  display:flex;
  gap:30px;
  align-items:center;
  background:#fff;  
  border-radius:16px;  
  box-shadow:0 8px 24px rgba(0,0,0,0.15);  
  padding:20px;  
  margin-bottom:30px;
  transition: transform 0.3s;
}

.profile:hover{
  transform: translateY(-5px);  
}

.profile img{
  width:140px;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.profile div{
  flex:1;
}

 
ul{
  padding-left:20px;
}

li{
  margin-bottom:8px;
}

 