* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background-color: #fafaf8;
  color: #333;
  line-height: 1.7;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  background-color: #fafaf8;
  margin-top : 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #333;
}


.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1 {
   font-family: "Playpen Sans Hebrew", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.5px;
  font-size: clamp(1.92rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  margin: 0.7rem 0 1rem;
}

.intro {
  text-align: left;
  margin: 2rem 0 4rem 0;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #555;
}

.index-section h2 {
  font-size: 1.5rem;
  text-align: left;
  margin: 3rem 0 1.5rem 0;
  font-weight: normal;
}

.content-list {
  list-style: disc;
  padding-left: 2rem;
  text-align: left;
}

.content-list li {
  margin: 0.8rem 0;
  font-size: 1rem;
  color: #555;
}

.content-list li strong {
  color: #333;
}

.content-list a {
  color: #555;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(85, 85, 85, 0.45);
  padding-bottom: 0.08rem;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.content-list a:hover {
  color: #333;
  border-bottom-color: #333;
  background-color: rgba(51, 51, 51, 0.08);
}

.content-list a:focus-visible {
  outline: 2px solid rgba(102, 102, 102, 0.35);
  outline-offset: 2px;
  border-radius: 3px;
}

.cv-footer {
  margin-top: 2.5rem;
  padding-top: 1rem;
}

.cv-footer p {
  font-size: 1rem;
  color: #666;
}

/* mine */


.profile-image{
    margin-top:40px;
    /* margin-bottom:20px; */
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid white;
    box-shadow:0 0 10px rgba(0,0,0,0.3);
}