/* about page - hover text make italic and arrow appear */
section[data-section-id="69b73e26a20327003f699e74"] {
span.about-me:before {
content: "";
background-image: url(https://images.squarespace-cdn.com/content/v1/69b37fa3acd07d002afe09de/74313f83-bfc6-4ba4-a564-d912544ed9bb/White-arrow.png?format=300w);
background-size: contain;
display: inline-block;
width: 150px;
height: 50px;
background-position: center center;
background-repeat: no-repeat;
margin-left: -100px;
opacity: 0;
}
.fe-block:hover {
.about-me {
font-style: italic;
}
.about-me:before {
opacity: 1;
}
}
}