*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --textColor: white;
    --lineColor: purple;
    --surfaceColor: #800080;
    --surfaceColorHover: rgba(0, 0, 0, 0.02);
    --highColor: rgba(255, 255, 255, 0.2);
    --switchBg-url: url(assets/moon-stars.svg);

}


body *{
    font-family: Poppins, sans-serif;
    color: var(--textColor);

}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000; /* ou qualquer cor de fundo */
    z-index: 1; /* Certifique-se de que está atrás do conteúdo */
}

#container {
    position: relative;
    z-index: 2; /* Coloque o conteúdo sobre os particles */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Centralizar o texto */
}


#profile{
    text-align: center;
    margin: 24px 0;
}


#profile p{
    font-weight: 500;
    line-height: 24px;
    margin-top: 8px;
}

ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
}

li{
    display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        gap: 5px;
        border: 1px solid var(--lineColor);
        height: 52px;
        padding: 16px 24px;
        background-color: var(--surfaceColor);
        border-radius: 8px;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        transition: background 0.2s;
        cursor: pointer;
}

li:hover{
    background-color: var(--surfaceColorHover);
    border: 1px solid --textColor;
}

li ion-icon{
    font-size: 1.5rem;
}

a{
    text-decoration: none;
}

/* SOCIAL LINKS */
#socialLinks{
    display: flex;
    justify-content: center;
    padding: 24px 0;
    font-size: 24px;

}


#socialLinks a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    transition: background 0.2s;
    border-radius: 50%;
}

#socialLinks a:hover{
    background-color: purple;
}