* {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    background: linear-gradient(transparent, #ffffff);
    font-family: 'Courier New', Courier, monospace;
}

nav {
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 45px;

}

nav a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
}

nav a:hover {
    background-color: #f0f0f08d;
}

nav li:first-child {
    margin-right: auto;
}

.menu-button {
    display: none;

}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: #000000;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
}

.sidebar li {
    width: 100%;

}

.sidebar a {
    width: 100%;
}


@media(max-width: 800px) {
    .desktopMenu {
        display: none;
    }
    .menu-button {
        display: block;
    }
}

@media(max-width: 400px) {
    .sidebar {
        width: 100%;
    }
}