#about-page{
    margin:0;
    height:1000vh;
    scroll-behavior: smooth;
    background-color:#fdf4ff
}

.home-btn{
    position: fixed;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #7da3e4;
    color: black;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,.15);
    z-index: 9999;
}

.scroll-arrow{
    position:absolute;
    top:50%;
    left:50%;
    animation:bounce 1s infinite;
}

@keyframes bounce {
    from {top:50%;}
    to{top:52%;}
}


.chat-message{
    position:fixed;
    top:30%;
    padding: 8px 12px;
    border-radius: 18px;
    max-width: 250px;
    margin-bottom: 4px;
    margin-left: auto;
    margin-right: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    opacity:0;
    height:0;
}

.from-me {
  left:50%;
  background: #007AFF; /* iPhone blue */
  color: white;
}

.from-them{
    left:30%;
    background-color: #E9E9EB;
    color:black;
}

.chat-message p {
  margin: 0;
}

.chat-message.from-me::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 20px;
  height: 20px;
  background:white;
  border-bottom-left-radius: 10px 15px;
  transform: translate(0, -2px);
}

.chat-message.from-me::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #007AFF; /* Match your page background */
  border-bottom-left-radius: 10px;
  transform: translate(-1px, 0);
}

.chat-message.from-them::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  background: white;
  border-bottom-right-radius: 16px 14px;
  transform: translate(0, -2px);
}

.chat-message.from-them::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 20px;
  height: 20px;
  background: #E9E9EB; /* Match your page background */
  border-bottom-right-radius: 10px;
  transform: translate(1px, 0);
}

.chat-image{
    max-width:250px;
    height:auto;
}

#headshot{
    top:37%;
}