* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: "Nunito Sans", sans-serif;
    background-color: rgba(8, 8, 8, 1);
}


.top-bar {
    width: 100%;
    min-height: 4rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    background-color: rgba(255,255,255, 0.03125);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
}

.nav-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    padding-left: 2rem;
    color: white;
}

.navigation-container {
    display: flex;
    gap: 2rem;
}

.navigation-button {
    padding: 0;
    border: 0;
    color: #bfbfbf;
    background: transparent;
    font-family: inherit;
    font-size: 1.25rem;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.25s ease;
}

.navigation-button:hover,
.navigation-button.active {
    color: white;
}


.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgba(32,32,32, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}


#tsparticles {
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    z-index: 0;
    animation: fade-in-particles 5s ease-out forwards;
    animation-delay: 1s;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.copyright-footer {
    width: 100%;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    font-weight: 200;
    z-index: 9999;
}

@keyframes fade-in-particles {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}