* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  font-family: 'General Sans', sans-serif;
  overflow-x: hidden;
}

.header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.name {
  color: #0043d5;
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  line-height: 25px;
  letter-spacing: -0.07em;
  margin: 0;
}

.line {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 2.5px;
  background: #0043d5;
}

/* Center section */
.center {
  height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: flex-start; /* start BELOW the line */
  padding-top: 40px;       /* space from line */
  
}

/* Smaller oval */
.oval {
  width: 495px;
  height: 810px;
  border-radius: 50%; /* THIS fixes both shape + click feel */
  overflow: hidden;
}

/* Image */
.oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;

}
/* Link wrapper (clickable area = oval) */
.image-link {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
}

/* Hover animation (smaller, tighter) */
.image-link:hover .oval img {
  transform: scale(1.03);
}