body {
    font-family: 'Inter', sans-serif !important;
    background-color: #0d0d0d !important;
    color: #f8f9fa !important;
}

.centered {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 2.5rem;
}

.highlight {
    color: #0d6efd;
}

.icon-link {
    font-size: 1.7rem;
    margin: 0 .6rem;
    transition: all 0.25s ease-in-out;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

    .icon-link.linkedin {
        color: #0a66c2;
    }

    .icon-link.github {
        color: #fff;
        background-color: #171515;
    }

    .icon-link.tiktok {
        color: #25f4ee;
        background-color: #000;
    }

    .icon-link.email {
        color: #d44638;
        background-color: #fff;
    }

    .icon-link:hover {
        transform: scale(1.25) rotate(5deg);
        box-shadow: 0 0 15px currentColor;
    }

.typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #0d6efd;
    animation: typing 3s steps(30, end), blink .75s step-end infinite;
}

footer {
    position: fixed;
    bottom: 15px;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}
