#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.container,
.navbar,
section,
footer {
    position: relative;
    z-index: 1;
    background: transparent; /* Make sure your content backgrounds are transparent */
}

.section-1-heading,
.section-heading,
.section-experience-heading {
    font-size: 5rem;
    font-family: "comic sans ms";
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1rem;
    margin-bottom: 7rem;
    text-shadow: 0.2rem 0.2rem 1rem gray;
    padding: 0 3rem;
    display: inline-flex;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border-radius: 5px;
}
#cursor,
#text-name {
    display: inline-block;
    vertical-align: middle;
}
*,
.dot {
    box-sizing: border-box;
}
.person-img,
.project-img {
    image-rendering: crisp-edges;
    object-fit: cover;
}
*,
.btn-icon {
    text-decoration: none;
}
@font-face {
    font-family: "Williams Caslon Text";
    src: url("fonts/Williams Caslon Text/WilliamsCaslonText-Regular.otf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Williams Caslon Text";
    src: url("fonts/Williams Caslon Text/WilliamsCaslonText-Bold.otf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Williams Caslon Text";
    src: url("fonts/Williams Caslon Text/WilliamsCaslonText-Italic.otf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    outline: 0;
    list-style-type: none;
    font-family: "Williams Caslon Text";
    font-weight: 400;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
#lcase {
    text-transform: lowercase;
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes hoverBounceColor {
    0% {
        transform: translateY(0);
        color: #f5f5f5;
        text-shadow: 0 5px 5px #32cd32;
    }
    50% {
        transform: translateY(-20px);
        color: #32cd32;
        text-shadow: 0 8px 8px #f5f5f5;
    }
    100% {
        transform: translateY(0);
        color: #f5f5f5;
        text-shadow: 0 5px 5px #32cd32;
    }
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-1 {
    position: relative;
    width: 100%;
    height: 100vh;
    background: transparent;
    flex-direction: column;
    z-index: 1;
}
.section-1-heading {
    font-weight: 300;
    text-shadow: 0.2rem 0.2rem 1rem gray;
    padding: 0 3rem;
    margin-bottom: 7rem;
    letter-spacing: 1rem;
    display: inline-flex;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border-radius: 5px;
}
#text-name,
.person-name {
    font-size: 2rem;
    font-family: "Williams Caslon Text";
}
.section-1-heading span {
    display: inline-block;
    animation: ease-in-out;
}
.section-1-heading:hover span {
    animation: hoverBounceColor 1s ease infinite;
}
.section-1-heading span:nth-child(1) { animation-delay: 0s; }
.section-1-heading span:nth-child(2) { animation-delay: 0.1s; }
.section-1-heading span:nth-child(3) { animation-delay: 0.2s; }
.section-1-heading span:nth-child(4) { animation-delay: 0.3s; }
.section-1-heading span:nth-child(5) { animation-delay: 0.4s; }
.section-1-heading span:nth-child(6) { animation-delay: 0.5s; }
.section-1-heading span:nth-child(7) { animation-delay: 0.6s; }
.section-1-heading span:nth-child(8) { animation-delay: 0.7s; }
.section-1-heading span:nth-child(9) { animation-delay: 0.8s; }
.section-1-heading span:nth-child(10) { animation-delay: 0.9s; }
.section-1-heading span:nth-child(11) { animation-delay: 1.0s; }
.section-1-heading span:nth-child(12) { animation-delay: 1.1s; }
.section-1-heading span:nth-child(13) { animation-delay: 1.2s; }
.section-1-heading span:nth-child(14) { animation-delay: 1.3s; }
.section-1-heading span:nth-child(15) { animation-delay: 1.4s; }
.person-img {
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    border: 0.7rem double #32cd32;
    background-color: #fff;
    padding: 0.5rem;
    opacity: 0.9;
    transition: border-width 0.6s ease-in-out, border-color 0.6s ease-in-out;
}
.person-img:hover {
    border-width: 2rem;
    border-color: #32cd32;
}
.name-container {
    width: auto;
    height: auto;
}
.person-name {
    color: #fff;
    margin: 1rem 0;
    padding: 0.5rem 3rem;
    letter-spacing: 0.3rem;
    text-shadow: 1rem 1rem 1rem #555;
    overflow: hidden;
}
.navbar-link,
.section-1-btn {
    font-size: 1.7rem;
    font-weight: 300;
    text-transform: uppercase;
}
#title-container {
    text-align: center;
    width: 100%;
    height: 60px;
}
#text-name {
    color: gray;
    letter-spacing: 2px;
}
#cursor {
    width: 3px;
    height: 20px;
    background-color: gray;
    animation: 0.75s step-end infinite blink;
}
@keyframes blink {
    from,
    to {
        background-color: transparent;
    }
    50% {
        background-color: green;
    }
}
.section-1-btn {
    position: relative;
    font-family: "comic sans ms";
    color: #fff;
    background-color: gray;
    border: 0.2rem solid #fff;
    padding: 0.5rem 1rem;
    letter-spacing: 0.1rem;
}
.navbar {
    width: 100%;
    height: 4rem;
    background-color: #000;
    box-shadow: 0.2rem 0.2rem 0.2rem #32cd32;
    position: absolute;
    z-index: 300;
}
.sticky {
    position: fixed;
    top: 0;
}
.navbar-link {
    font-family: "Williams Caslon Text";
    color: #333;
    margin: 0 3rem;
    letter-spacing: 0.3rem;
    position: relative;
    transition: color 0.2s;
}
.card-contact-info h3,
.change.navbar-link,
.navbar-link:hover {
    color: #fff;
}
.navbar-link::before {
    content: "";
    width: 0;
    height: 0.2rem;
    background-color: #fff;
    position: absolute;
    right: -15%;
    bottom: -0.3rem;
    transition: width 0.2s;
}
.change.navbar-link::before,
.navbar-link:hover::before {
    width: 130%;
}
.section-2 {
    width: 100%;
    height: 100%;
    padding: 15rem 0 10rem;
    background: rgba(51, 51, 51, 0.7);  /* Semi-transparent dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.progress-bars-wrapper {
    margin-bottom: 10rem;
}
.progress-bar {
    width: 800px;
    height: 4rem;
    background-color: #f5f5f5;
    margin: 1.5rem 0;
    border-radius: 3rem;
    box-shadow: 0.2rem 0.2rem 1rem #555;
    position: relative;
}
.progress-text {
    position: absolute;
    left: 2rem;
    right: 2rem;
    font-size: 2rem;
    font-family: "comic sans ms";
    color: #f5f5f5;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    animation: bounce 2s ease-in-out infinite;
}
.percent-text {
    display: flex;
    align-items: center;
    color: #fff;
    animation: bounce 2s ease-in-out infinite;
}
.percent-text span {
    display: inline-flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-right: 0.2rem;
}
.progress-percent {
    width: 0;
    height: 100%;
    background-color: #32cd32;
    border-radius: 3rem;
    transition: width 0.5s ease-in-out;
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}
.card-about,
.experience-header div,
.experience-header div h3,
.experience-header div span,
.experience-section h1,
.person-info {
    font-family: "Williams Caslon Text";
}
.progress-text span {
    margin: 0 0.5rem;
    font-size: 2rem;
    font-weight: 700;
}
.progress-percent {
    text-align: center;
    height: 100%;
    background-color: #32cd32;
    border-radius: 3rem;
    transition: width 0.5s ease-in-out 0.5s;
}
.card-about {
    max-width: 800px;
    text-align: center;
    background-color: #262626;
    border: 2px solid #000;
    border-radius: 0.5rem;
}

.card-about-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.card-about.flipped .card-about-inner {
    transform: rotateY(180deg);
}

.card-about-front, .card-about-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background-color: #262626;
    border: 2px solid #000;
}

.card-about-front {
    background-color: #262626;
}

.card-about-back {
    background-color: #262626;
    transform: rotateY(180deg);
    padding: 20px;
}

.card-about-back .person-info {
    padding: 20px;
    font-size: 1.8rem;
    line-height: 1.6;
}

.card-header {
    display: flex;
    background-color: #333;
    border-bottom: 1px solid #000;
}
.dot {
    margin: 10px 3px;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 0.125rem solid;
    display: inline-block;
    opacity: 0.8;
}
.dot--full {
    background-color: currentColor;
}
.red {
    color: #ff4500;
}
.yellow {
    color: gold;
}
.green {
    color: #32cd32;
}
.person-info {
    font-size: 1.7rem;
    background-color: #262626;
    color: #f5f5f5;
    letter-spacing: 0.2rem;
    text-align: center;
    justify-content: justify;
}
.person-info h3 {
    margin: 30px 10px 20px;
    text-align: left;
}
.copyright,
.experience-section h1,
.project-text,
.service {
    text-align: center;
}
.services {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.service:first-child,
.service:last-child {
    align-self: flex-start;
}
.service i {
    font-size: 5rem;
    color: #888;
    margin-bottom: 2rem;
    text-shadow: 0.1rem 0.1rem 0.5rem #555;
}
.service h2 {
    font-size: 1.5rem;
    color: #fff;
    background-color: #777;
    width: 20rem;
    letter-spacing: 0.3rem;
    transform: skew(-10deg);
    box-shadow: 0.2rem 0.2rem 0.5rem #555;
}
.experience-section {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15rem 0 10rem;
    background: rgba(51, 51, 51, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}
.section-experience-heading {
    position: relative;
    z-index: 2;
    font-size: 5rem;
    font-family: "comic sans ms";
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1rem;
    margin-bottom: 7rem;
    text-shadow: 0.2rem 0.2rem 1rem gray;
    padding: 0 3rem;
    display: inline-flex;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border-radius: 5px;
}
.experience-card {
    background-color: transparent;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin-bottom: 20px;
    perspective: 1000px;
}
.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}
.experience-card.flipped .card-inner {
    transform: rotateY(180deg);
}
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.card-front {
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.card-front img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    filter: brightness(0.9);
    transition: transform 0.3s ease;
}
.card-front:hover img {
    transform: scale(1.1);
}
.card-back {
    background-color: #1e1e1e;
    transform: rotateY(180deg);
    padding: 20px;
    overflow-y: auto;
    text-align: left;
}
.experience-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.experience-header img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-right: 20px;
}
.experience-header div {
    display: flex;
    flex-direction: column;
}
.experience-header div h3 {
    margin: 0;
    font-size: 2.2rem;
    color: #fff;
    text-align: left;
}
.experience-header div span {
    font-size: 2rem;
    color: #fff;
}
.experience-details {
    font-size: 1.7rem;
    color: #bbb;
    margin-bottom: 10px;
    text-align: left;
}
.experience-points,
.skills {
    font-size: 1.5rem;
    font-family: "Williams Caslon Text";
}
.experience-details span {
    display: flex;
}
.experience-details .location {
    font-size: 1.7rem;
    font-family: "Williams Caslon Text";
}
.experience-points {
    list-style: none;
    padding-left: 20px;
    margin: 10px 0;
    color: #ddd;
    text-align: left;
}
.experience-points li {
    margin-bottom: 10px;
    font-size: 2rem;
    text-align: left;
}
.experience-points li::before {
    content: "☛";
    color: gray;
    font-size: 2rem;
    margin-right: 10px;
}
.skills {
    margin-top: 15px;
    color: #32cd32;
    font-style: italic;
    text-align: left;
}
.section-3 {
    width: 100%;
    height: 100%;
    padding: 10rem 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.projects-wrapper {
    width: 80%;
    flex-wrap: wrap;
}
.project,
.section-4 {
    display: flex;
    flex-direction: column;
}
.project {
    justify-content: center;
    align-items: center;
    margin: 1rem;
    background-color: #fff;
    box-shadow: 0.3rem 0.3rem 0.5rem #777;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.5s;
}
.project-link,
.project-text {
    letter-spacing: 0.1rem;
    position: absolute;
}
.project:hover {
    box-shadow: 1rem 1rem 1rem #777;
}
.project-text {
    top: -10rem;
    z-index: 10;
    transition: top 0.3s;
}
.project:hover .project-text {
    top: 5rem;
    transition: top 0.3s 0.3s;
}
.project-name {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-transform: capitalize;
}
.project-technologies {
    font-size: 1.8rem;
    color: #32cd32;
}
.project-img {
    width: 40rem;
    height: 40rem;
    transition: opacity 0.3s;
}
.project:hover .project-img {
    opacity: 0.2;
}
.project-link {
    font-size: 2rem;
    font-weight: 500;
    color: #333;
    border: 0.3rem solid #32cd32;
    padding: 0 1rem;
    background-color: #fff;
    bottom: -5rem;
    transition: bottom 0.3s;
}
.project:hover .project-link {
    bottom: 5rem;
    transition: bottom 0.3s 0.3s;
}
.resume-linkedin-section {
    text-align: center;
    margin: 40px 0;
    font-family: "Williams Caslon Text";
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.btn-icon {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Williams Caslon Text";
    color: #fff;
    background-color: #32cd32;
    border-radius: 25px;
    transition: background-color 0.3s;
}
.btn-icon:first-child,
.section-4 {
    background-color: #333;
}
.btn-icon i {
    margin-right: 8px;
    font-size: 18px;
}
.btn-icon:first-child:hover,
.btn-icon:hover {
    background-color: #555;
}
.section-4 {
    width: 100%;
    min-height: 80vh;
    margin: auto;
    padding: 5rem 2rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-4-heading {
    color: #fff;
    box-shadow: none;
    border-color: #fff;
    margin-bottom: 50px;
}
.section-4-detail {
    color: #ad7e48;
    font-size: 2.5rem;
    margin: auto;
}
.dot-contact-info {
    color: grey;
}
.card-header-contact-info {
    background-color: #333;
    border-bottom: 2px solid #3d3d3d;
}
.card-contact-info {
    background-color: #262626;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    box-shadow: none;
}
.section-detail-email {
    color: #999;
}
.coffee-link {
    cursor: pointer;
    color: #32cd32;
}
.section-5 {
    width: 100%;
    height: 50px;
    background: rgba(34, 34, 34, 0.7);  /* Semi-transparent dark background */
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}
.copyright {
    color: #f5f5f5;
    font-size: 15px;
    font-family: williams caslon text;
    letter-spacing: 0.2rem;
    font-weight: 300;
}
@media (max-width: 1200px) {
    .services {
        height: auto;
        flex-wrap: wrap;
    }
    .service {
        margin: 3rem 2rem;
    }
    .section-4 {
        height: 80vh;
    }
}
@media (max-width: 800px) {
    .section-1-heading,
    .section-heading {
        font-size: 4rem;
    }
    .progress-bar {
        width: 50rem;
    }
}
@media (max-width: 768px) {
    .section-1-heading:hover span {
        animation: none;
    }
}
@media (max-width: 600px) {
    .section-1-heading,
    .section-heading {
        font-size: 3rem;
    }
    .navbar-link {
        margin: 0 2rem;
        font-size: 1.5rem;
    }
    .section-2 {
        padding: 10rem;
    }
    .section-2-heading {
        margin-bottom: 10rem;
    }
    .progress-bar {
        width: 45rem;
    }
    .project-img {
        width: 100%;
    }
    .contact-form {
        width: 40rem;
    }
    .copyright {
        width: 70%;
    }
}
@media (max-width: 500px) {
    html {
        font-size: 55%;
    }
}
@media (max-width: 450px) {
    html {
        font-size: 45%;
    }
    .section-1-heading,
    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 10rem;
    }
    .navbar-link {
        margin: 0 1.5rem;
    }
    .section-2-heading {
        text-align: center;
    }
    .card-about,
    .progress-bar {
        width: 40rem;
    }
}
@media (max-width: 360px) {
    html {
        font-size: 43%;
    }
    .section-1-heading,
    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 10rem;
    }
    .navbar-link {
        margin: 0 1.5rem;
    }
    .section-2-heading {
        text-align: center;
    }
    .card-about,
    .progress-bar {
        width: 40rem;
    }
}
@media (max-width: 280px) {
    html {
        font-size: 35%;
    }
    .section-1-heading,
    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 13rem;
    }
    .navbar-link {
        margin: 0 1.5rem;
    }
    .section-2-heading {
        text-align: center;
    }
    .card-about,
    .progress-bar {
        width: 40rem;
    }
}
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    html {
        font-size: 40%;
    }
    .section-1-heading,
    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 13rem;
    }
    .navbar-link {
        margin: 0 1.5rem;
    }
    .section-2-heading {
        text-align: center;
    }
    .card-about,
    .progress-bar {
        width: 40rem;
    }
}
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
    html {
        font-size: 40%;
    }
    .section-1-heading,
    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 13rem;
    }
    .navbar-link {
        margin: 0 1.5rem;
    }
    .section-2-heading {
        text-align: center;
    }
    .card-about,
    .progress-bar {
        width: 40rem;
    }
}
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
    html {
        font-size: 40%;
    }
    .section-1-heading,
    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 13rem;
    }
    .navbar-link {
        margin: 0 1.5rem;
    }
    .section-2-heading {
        text-align: center;
    }
    .card-about,
    .progress-bar {
        width: 40rem;
    }
}
@keyframes floatText {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.section-heading span,
.section-experience-heading span {
    display: inline-block;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.section-heading:hover span,
.section-experience-heading:hover span {
    animation: hoverBounceColor 1s ease infinite;
}
.section-2-heading span,
.section-3-heading span,
.section-4-heading span,
.section-experience-heading span {
    animation-play-state: paused;
}
.section-2-heading:hover span,
.section-3-heading:hover span,
.section-4-heading:hover span,
.section-experience-heading:hover span {
    animation-play-state: running;
}
/* Animation delays for all section headings */
.section-heading span:nth-child(1) { animation-delay: 0s; }
.section-heading span:nth-child(2) { animation-delay: 0.1s; }
.section-heading span:nth-child(3) { animation-delay: 0.2s; }
.section-heading span:nth-child(4) { animation-delay: 0.3s; }
.section-heading span:nth-child(5) { animation-delay: 0.4s; }
.section-heading span:nth-child(6) { animation-delay: 0.5s; }
.section-heading span:nth-child(7) { animation-delay: 0.6s; }
.section-heading span:nth-child(8) { animation-delay: 0.7s; }
.section-heading span:nth-child(9) { animation-delay: 0.8s; }
.section-heading span:nth-child(10) { animation-delay: 0.9s; }
.section-heading span:nth-child(11) { animation-delay: 1.0s; }
.section-heading span:nth-child(12) { animation-delay: 1.1s; }
.section-heading span:nth-child(13) { animation-delay: 1.2s; }
.section-heading span:nth-child(14) { animation-delay: 1.3s; }
.section-heading span:nth-child(15) { animation-delay: 1.4s; }

/* Add scroll styling for the back of the card */
.card-back::-webkit-scrollbar {
    width: 8px;
}
.card-back::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 4px;
}
.card-back::-webkit-scrollbar-thumb {
    background: #32cd32;
    border-radius: 4px;
}
.card-back::-webkit-scrollbar-thumb:hover {
    background: #28a428;
}

@keyframes fastTyping {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes fastBlink {
    from, to {
        border-right-color: transparent;
    }
    50% {
        border-right-color: #32cd32;
    }
}

#about-text-container {
    width: 100%;
    padding: 30px;
    text-align: left;
}

#about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: "Williams Caslon Text";
}

.typing-paragraph {
    display: inline-block;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #f5f5f5;
    font-size: 1.7rem;
    letter-spacing: 0.2rem;
    line-height: 1.6;
    border-right: 2px solid transparent;
}

.typing-paragraph.typing {
    animation: fastTyping 0.5s steps(40, end) forwards,
               fastBlink 0.75s step-end infinite;
}
