/* reset margins and make the whole site background black */
body {
    margin: 0;
    padding: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Inter', sans-serif;
}

/* particles background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 0;
}

/* menu container */
.centermenu {
    background-color: black;
    border: 2px solid white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* name */
.name {
    background: linear-gradient(360deg, #ffffff, #4c4c4c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 15px 0;
    font-size: 24px;
}

/* links */
.links {
    display: flex;
    gap: 15px;
}

/* links without outline and background */
.links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* a for links */
.tlinks {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

/* a for text links*/
.tlinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #949494;
    text-decoration: none;
}

h1 {
    font-weight: 500;
}