nav {
    display: flex;
    justify-content: space-around;
    position: fixed;
    width: 100%;
    background: white;
    height: 4vw;
    align-items: center;
    z-index: 10000;
    padding: 0 15%;
    align-items: center;
}

nav .navLeft {
    text-align: left;
    display: flex;
}

nav .navUl {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    text-align: center;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    user-select: none;
}

nav .artText {
    display: flex;
    align-items: center;
}

nav .logoAndName {
    display: flex;
    align-items: center;
}

nav .navRight {
    text-align: right;
    display: flex;
}

nav a {
    color: #333333;
}

nav .navRight span {
    margin: 1vw;
}

nav a:hover {
    color: #0084ff;
}

nav .navRight .signupButton {
    background: #0084ff;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 0;
}

nav .loginButton {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
}

nav .signupButton,
nav .loginButton:hover {
    cursor: pointer;
}