﻿h1 {
    max-width: 49rem;
    font-size: 3.5em;
    line-height: 1em;
    font-weight: 700;
    margin: 0.25em auto;
}

.page-about {
    position: relative;
    overflow: hidden;
    margin: auto;
    background-color: white;
    box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.1);
}

.profile-photo {
    position: absolute;
    top: 0;
    left: 50%;
    img{
           width: 100%;
       }
}

.profile-photo {
    animation: right_frame 1s ease-in-out 1 forwards;
}

.show-info .profile-photo {
    animation: left_frame 1s ease-in-out 1 forwards;
}

@keyframes right_frame {
    0% {
        top: 40px;
        left: 40px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
    }

    50% {
        top: 40px;
        left: 50%;
        width: 160px;
        height: 160px;
        border-radius: 50%;
    }

    100% {
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        border-radius: 0;
    }
}

@keyframes left_frame {
    0% {
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        border-radius: 0;
    }

    50% {
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        border-radius: 0;
    }

    100% {
        top: 40px;
        left: 40px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
    }
}
