html, body {
    overflow: hidden;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
}

body {
    /* Top to bottom */
    background: linear-gradient(
        to bottom,
        var(--bg-primary) 50%,
        var(--bg-secondary) 100%
    );
}

.page-content {
    position: absolute;
    min-width: 100vw;
    min-height: 100vh;
    z-index: 2;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0%;
    z-index: 1; /* Sits in the back */
    pointer-events: none;
}

.custom-navbar {
    display: flex;
    align-items: center;
    width: 100%;
    height: 20%;
    padding: 1%;
    margin-top: 1.5rem;
}

.brand {
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: left;
    /* padding-right: 9%; */
    padding-left: 5%;
}

.brand-text {
    color: var(--accent)
}

.navbar-links-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    padding-right: 5%;
}

.cv-download-container {
    border-radius: 50%;
}

.nav-button {
    color: var(--text-secondary);
    text-decoration: none;
}

.nav-button:hover {
    color: var(--text-muted);
    text-decoration: none;
}

