﻿body {
    background-image: linear-gradient(var(--blue)), image-set(
        url('/img/Office_Picture_Outside-bw.webp') type('image/webp'),
        url('/img/Office_Picture_Outside-bw.avif') type('image/avif')
    );
    background-blend-mode: multiply;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.text-content {
    columns: 2;

    .btn {
        box-sizing: border-box;
        column-span: all;
        margin-top: 1em;
    }
}

.profile-pic {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-pic::after {
    position: relative;
    display: block;
    color: var(--white);
    font: normal 1.2em 'Vidaloka', serif;
    content: 'Catherine Anne Gacquin, Esq.';
    margin: .5em auto 0;
    left: 0;
    right: 0;
    text-align: center;
}

.frame {
    height: min-content;
    min-width: 290px;
    align-self: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    border-width: 10px;
    border-style: solid;
    border-color: #4F4C4C #494040 #2F2D2D #434040;
    background: #f5f5f5;
    background-image: linear-gradient(45deg, var(--orange), #b2b2ad);
    box-shadow: inset -2px 2px 5px rgba(0,0,0,.6),0 5px 2px rgba(0,0,0,.1), 0 10px 20px rgba(0,0,0,.8);
    aspect-ratio: 293/390;
}

.frame::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -66%;
    width: 105%;
    height: 86%;
    transform: rotateZ(-40deg);
    background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.2));
}

.frame picture {
    display: block;
    border-width: 2px;
    border-style: solid;
    border-color: #BBBAB4 #C7C7BF #E5E4DF #C7C7BF;
    box-shadow: 0 -1px 1px rgba(0,0,0,.1), 0 1px 1px 1px rgba(255,255,255,.7);

    img {
        display: block;
        width: 100%;
        max-width: 293px;
    }
}

@media (width < 800px) {
    .text-content {
        columns: 1;
    }
}

@media (width < 452px) {
    .frame {
        width: 200px;
        min-width: auto;
    }
}