#backgroundCanvas {
    position: fixed;
    background-color: rgb(24 24 27/1);
    top: 0;
    left: 0;
    width: 120vw;
    height: 100%;
    z-index: -1;
}

.section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.intro-card {
    max-width: 45vw;
    width: 45vw;
    padding: 40px;
    background-color: rgba(24, 24, 27, 0.7); /* Slightly transparent dark background */
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Optional: adds blur effect to background */

    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    font-size: 32px;
}

.hero {
    line-height: 1.7;
}

.typing {
    font-size: 24px;
    font-family: 'Inter', 'Courier New', Courier, monospace;
    text-align: left;
    margin-bottom: 20px;
    min-height: 40px; 
}

.socials {
    margin-top: 2rem;
    font-size: 24px;
}

.socials > * {
    margin-right: 1rem;
}