* {
    box-sizing: border-box;
}

body {
    background-color: rgb(24 24 27/1);
    color: #eee;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

nav {
    position: sticky;
    position: fixed;
    top: 0;
    width: 100%;
    height: 10vh;
    z-index: 100;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2vw;

    background-color: rgb(24 24 27/1);
}

nav a {
    color: #eee;
    text-decoration: none;
    margin-right: 2vw;
}

nav a:hover {
    text-decoration: underline;
}


