/* Custom fonts */
@font-face {
    font-family: 'AspaceBlack';
    src: url('/fonts/aspaceblack.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Courier';
    src: url('/fonts/cour.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Body styling */
body {
    background-color: #212121; /* Dark background for log */
    color: #ffffff; /* White text */
    font-family: 'Courier', Arial, Helvetica, sans-serif; /* Main text font */
    font-size: 16px;
    line-height: 1.6em;
    margin: 0;
    padding: 20px; /* Top padding */
    margin-left: 20px; /* Left margin as requested */
}

/* Headings */
h1, h2, h3, h4, h5 {
    font-family: 'AspaceBlack', Arial, Helvetica, sans-serif;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Paragraphs */
p {
    max-width: 700px;
}

/* Horizontal rule */
hr {
    border: 1px solid #ff0000;
    margin: 20px 0;
}

/* Links */
a {
    color: red;
    text-decoration: none;
}

a:hover {
    color: white;
}

/* Navigation bar for log links */
.log-nav {
    display: flex;
    justify-content: space-between; /* left link left, right link right */
    margin-top: 40px;
    max-width: 700px; /* matches text width */
}

.log-nav a {
    font-family: 'AspaceBlack', Arial, Helvetica, sans-serif;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
    display: block; /* removes extra space below image */
}