#content_about {
    display: flex;

    justify-content: center;
    align-items: center;

    min-height: 100vh;
    transform-origin: center;


    user-select: none;
}

#about_container {
    width: 90vw;
    height: 90vh;
    
    overflow: hidden;
}
#about_container video {
    width: 100%;
    height: auto;
    border-radius: 2rem;
}
#about_container h1 {
    position: absolute;

    top: clamp(2vh, 0%, 10vh);
    margin: 5% 1%;

    font-size: 2.5rem;
    

    color: var(--text-primary);
}
#about_container p {
    position: absolute;

    top: clamp(15vw, 40%, 10vh);
    right: 0;
    transform: translateY(50%);

    margin-right: 6%;

    font-size: 1rem;

    max-width: 25vw;

    color: var(--text-primary);
    mix-blend-mode: normal;

    overflow-wrap: break-word;
    white-space: normal;
}

#profile_side_view {
    position: fixed;
    z-index: 10;
    height: 75vh;
    width: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    transition: opacity,bottom 50ms;
}
