html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'VT323', Courier, monospace;
    width: auto;
    height: 100vh;
    background-color: rgba(0, 0, 0, 1);
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-image: url('./images/universe-1566159.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: 1; /* Lower z-index to be behind the content */
}

nav{
    user-select: none;
    height: 0;
}
h1 {
    color: white;
    font-size: 10vw;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    z-index: 100; /* Higher z-index to be above the particles */
    position: relative; /* Ensure it can have a z-index */
}

h3 {
    color: white;
    display: inline-flex;
    padding: 1vw 1vw;
    text-decoration: underline;
    z-index: 100; /* Higher z-index to be above the particles */
    position: relative; /* Ensure it can have a z-index */
}

a:hover {
    color: yellow;
}

.center-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100; /* Ensure it's above the particles */
    pointer-events: none;
}