@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');

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

body {
    font-family: 'Roboto Mono', monospace;
    margin: 0;
}

a:link {
    text-decoration: none;
    font-weight: bold;
    color: rgb(29, 155, 240)
}

a:visited {
    text-decoration: none;
    font-weight: bold;
    color: rgb(29, 155, 240)
}

a:hover {
    text-decoration: none;
    font-weight: bold;
    color: rgb(29, 155, 240)
}

a:active {
    text-decoration: none;
    font-weight: bold;
    color: rgb(29, 155, 240)
}

.code {
    font-family: monospace, monospace;
}

header {
    background-color: #f8f8f8;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    width: 100%;
}

.nav-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.nav-item {
    margin-left: 20px;
}

.nav-item:first-child {
    margin-left: 0;
}

.nav-item a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px 10px;
}

.nav-item a:hover {
    background-color: #ddd;
    border-radius: 3px;
}

.nav-spacer {
    flex-grow: 1;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 20px;
}

.screenshot {
    text-align: center;
    margin: 10px;
}

.caption{
    text-align: center;
    font-size: 0.8em;
}

