html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #fff;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
    text-align: center;
    flex-direction: column;
}
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 0;
}
h1 {
    z-index: 2;
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}
.about-me-container {
    font-family: 'Courier New', Courier, monospace;
    font-size: 24px;
    line-height: 1.5;
    z-index: 2;
}

.abt-me {
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid rgb(255, 255, 255);
    width: 0;
    margin: 0;
    z-index: 2;
    animation: typing 2s steps(30) 1s forwards, blink-caret 2.1s step-end 2.1s forwards;
}

@keyframes typing {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

@keyframes blink-caret {
    20% {
        border-color: transparent;
    }
    40% {
        border-color: white;
    }
    60% {
        border-color: transparent;
    }
    80% {
        border-color: white;
    }
    100% {
        border-color: transparent;
    }
}

/* ===================== */
/* MEDIA QUERIES: MOBILE */
/* ===================== */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    p {
        font-size: 15px;
    }
}
