#main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#icons-container {
    display: flex;
    flex-direction: row;
    column-gap: 12px;
}

.bi {
    color: white;
}

#pfp {
    margin: 5px;
    border-radius: 50%;
}

#header {
    color: white;
    margin: 5px;

    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 30;
    font-style: bold;

    overflow: hidden;

    animation:
        typing 0.5s steps(12, end),
        blink-caret 0.05s step-end infinite;
}

#description {
    color: white;
    margin: 0;

    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 30;
    font-size: 12pt;
    font-style: bold;

    overflow: hidden;
}

#particles-js {
    width: 100%;
    height: 100vh;
    background-color: black;
    position: absolute;
}

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

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: orange;
    }
}
