* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    font-family: "Inter", sans-serif;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    width: 100%;
    height: 75px;
}

.branding {
    font-weight: 800;
    color: black;
    font-size: 1.1rem;
}

.nav-logo {
    height: 32px;
    width: auto;
    display: block;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.button {
    width: auto;
    height: auto;
    padding: 10px 30px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 0px;
    cursor: pointer;
}

.button.inverse {
    background-color: white;
    outline: 1px solid black;
    color: black;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
