body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif; 
    background-image: url('/static/img/background.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

nav {
    color: white;
    background-color: black;
    padding-bottom: 2.5px;
    padding-left: 2px;
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
}

nav a {
    color: white;
    text-decoration: none;
}

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

pre {
    background-color: black;
    color: white;
    padding: 8px;
    overflow: auto;
}

pre code {
	font-size: 14px;
	font-family: "Lucida Console", "Courier New", monospace;
    text-decoration: none;
}

code {
	font-family: "Lucida Console", "Courier New", monospace;
    text-decoration: underline;
}

.notepad {
    background: rgba(255, 255, 255, 0.7);
    margin: auto;
    width: 50%;
    color: black;
    padding: 10px;
    word-wrap: break-word;
}

.notepad img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.notepad h2,h3,h4 {
    margin-bottom: 0;
}

.notepad h1 {
    text-align: center;
}

.notepad a {
    text-decoration: none;
}

.notepad a:hover {
    text-decoration: underline;
}
