html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    font-family: monospace;
    font-size: 17px;
    background-color: rgba(0, 0, 0, 0.9);
    background-image: url("images/uglyguy.jpg");
    background-blend-mode: darken;
    background-size: 100% 150%;
    color: white;
}

nav {
    display: flex;
    height: 50px;
    background-color: rgba(10, 10, 10, 0.25);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*position: sticky;*/
    top: 0;
    transition: background-color 0.2s;
    backdrop-filter: blur(10px);
}

nav a {
    text-decoration: none;
    color: white;
    padding: 5px 20px;
    border-right: 1px solid white;
}

nav a:last-child {
    border: none;
}

nav a:hover {
    color: orange;
}

nav:hover {
    background-color: rgba(10, 10, 10, 1);
}
