/* profile picture */
.profile-picture {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 2px;
}

.profile-picture {
    pointer-events: none;
}

/* container */
.apd-container {
    padding-top: 20px;
    padding-bottom: 15px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
    margin: 0 auto;
}

.introduction {
    background: #fff;
    user-select: none;
    user-focus: none;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 15px;
}

/* User greetings */
.apd-greetings {
    color: #040f49;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.apd-name {
    color: #040f49;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace;
}

.apd-profession {
    color: #040f49;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    /* text less prominent */
    opacity: 0.7;
}

/* PULSATING CARET */
[data-rotate]:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 2px;
    height: 1em;
    background: #000;
    animation: caretPulsate 1s linear infinite;
}

@keyframes caretPulsate {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 0;
    }
    90% {
        opacity: 0;
    }
}

/* heading description */
.apd-headline {
    padding: 0 20px;
}
.headline {
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    /* text less prominent */
    opacity: 0.7;
    max-width: 600px;
}

/* design buttons */
.apd-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 10px;
    transition: all 0.3s ease;
}

.apd-button:hover {
    transform: translateY(-2px);
}

.apd-button:active {
    transform: translateY(2px);
}

/* primary & secondary button */
.btn-primary {
    background: #040f49;
    color: #fff;
}

.btn-primary:hover {
    background: #040f49;
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: #040f49;
    border: 1px solid #040f49;
}

.btn-secondary:hover {
    background: #040f49;
    color: #fff;
}

/* contact me */
.btn-contact {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    margin: 10px;
    transition: all 0.3s ease;
    color: #1b1b1b;
}

.btn-contact:active:after {
    background: transparent;
    transform: translateY(2px);
}

.btn-contact:hover:before {
    opacity: 1;
    background: rgba(3, 89, 79, 0.89);
}
