@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Outfit:wght@100..900&family=Poiret+One&display=swap');



.hero {

    text-align: center;

    padding: 40px;

    position: relative;

    z-index: 1;

}



.hero p {

    word-spacing: 10px;

    font-family: Homemade Apple;

    font-weight: 400;

    font-size: 20px;

}



.heroName {

    font-size: 48px;

    font-weight: bold;

    color: #333;

    letter-spacing: 2px;

}



.lineSeparator {

    width: 60%;

    margin: 40px auto;

    border: 0;

    border-top: 4px solid #333;

    border-radius: 5px;

}



.info {

    display: flex;

    justify-content: space-between;

    flex-direction: column;

    align-items: center;

    padding: 20px;

    border-radius: 10px;

    width: 70%;

    margin: 30px auto;

}



.profileCard {

    flex: 1;

    display: flex;

    justify-content: center;

}



.profilePictureWrapper {

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background-color: white;

    overflow: hidden;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 4px solid rgb(45, 45, 45);

    position: relative;

    z-index: 1;

}



.profilePicture {

    width: 100%;

    height: 100%;

}



.profilePicture img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center top;

    filter: brightness(1.0) contrast(1.05) hue-rotate(-6deg);

}





.aboutText {

    flex: 1;

    text-align: left;

    bottom: 40px;

}



.aboutText h2 {

    display: inline-block;

    border-bottom: 3px solid #676767;

    border-radius: 2px;

    font-family: Homemade Apple;

    font-weight: 400;

    font-size: 24px;

    color: #333;

}



.aboutText p {

    font-size: 18px;

    color: #555555;

    word-spacing: 15px;

    margin: 5px 0;

}