.profilepic::before {
    content: "";
    width: 256px;
    height: 256px;
    position: absolute;
    background-image: url("https://avatars.githubusercontent.com/u/120117618");
    background-size: contain;
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.profilepic img {
    width: 256px;
    height: 256px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f0f0;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.profilepic:hover::before {
  transform: scale(1.05);
  filter: blur(24px);
}

.profilepic:hover img {
  transform: scale(1.05);
}

.hero {
    display: flex;
    flex-direction:row-reverse;
    justify-content: space-between;
    align-items: center;
    gap:2rem;
    max-width:900px;
    margin:3rem auto;
}

@media (max-width: 600px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }
}

.main-title {
    flex:1;
}

.main-title h1 {
    font-family: "Times New Roman";
    font-size: 2.5rem;
}

.main-title h3 {
    font-family: "Times New Roman";
    font-size: 1.5rem;
    font-weight: 400;
    color: black;
}
