body {
    width: 100%;
    height: 100vh;
    margin: 0;
    background: #000212;
    color: rgb(255, 255, 255);
    font-family: "Work Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.4px;
}

nav {
    display: flex;
    padding: 10px 15px;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 22px;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(255, 255, 255, 0.03);
    background: rgba(2, 10, 33, 0.75);
    box-shadow: 0 4px 21.7px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    position: fixed;
    z-index: 1;
    transition: transform 0.3s ease;
}

nav.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.navflex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.navsel {
    display: flex;
    padding: 7px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 52px;
    background: #1C4ECA;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.navreg {
    display: flex;
    padding: 7px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 52px;
    background: #ffffff00;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

main {
    background-image: url(https://www.fluxstuff.org/images/oswars/main-background.png);
    background-size: cover;
}

h1 {
    padding-top: 80px;
    padding-left: 10%;
    padding-right: 10%;
    color: rgba(255, 255, 255, 0.60);
    font-family: "Work Sans";
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}