/* hero section */
.hero-section {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;

    .author-photo {
        position: absolute;
        left: 50%;
        top: 10vh;
        min-height: 90vh;
        bottom: 0;
        margin-top: 10vh;
        filter: grayscale(.3) brightness(.5);
        transform: translateX(-50%);
    }

    .hero-content {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -40%);
        color: var(--color-light-100);
        text-align: center;
        user-select: none;

        #self-introduction {
            letter-spacing: 1px;
            font-size: 2rem;
            font-weight: 100;
        }

        .highlight {
            display: block;
            line-height: 1.2;
            font-family: "Archivo Black", sans-serif;
            font-size: 4rem;
            font-style: normal;
        }

        .subtitle {
            font-size: 1.2rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 400;
            color: var(--color-dark-600);
            margin-top: 1rem;
        }

        .cta-button {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 10px;
            transition: 100ms ease-out 100ms;
            color: var(--color-light-100);

            &:hover {
                color: var(--color-primary);
                transform: translateY(10%) scale(104%);
                transition: 100ms ease-in;
            }
        }
    }
}