body {
  font-family: Arial, sans-serif;
  background-color: #ffc1cc;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  position: relative;
  overflow: visible;
  background: rgb(247, 224, 203);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 500px;
}

#myPhoto {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
  object-fit: cover;
}

#myPhoto:hover {
  transform: scale(1.05);
}

h1 {
  color: #333;
  margin-top: 20px;
}
/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.popup-content {
  background-color: rgb(247, 224, 203);
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  position: relative;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 1;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 10px;
}

.close:hover {
  color: #000;
}

.bio-section {
  text-align: left;
  line-height: 1.6;
}

.bio-section h2 {
  color: #333;
  border-bottom: solid #ffc1cc;
  padding-bottom: 10px;
}

.contact p {
  line-height: 0.3;
}

.social-logo {
  width: 25px;
  height: auto;
  vertical-align: middle;
  margin-right: 3px;
}

.strawberry {
  position: absolute;
  top: -25px;
  right: -20px;
  width: 75px;
  height: auto;
}

.kali {
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 180px;
  height: auto;
  z-index: 0;
}