/* site.css — shared base styles for every page.
   Page-specific styles live in their own files (about.css, work.css, slideshow.css, contact.css). */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
}

header a {
    color: #ffffff;
    text-decoration: none;
    margin: 5%;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

header a:hover {
    font-weight: 100;
    text-decoration: underline;
}

/* Link colour inside emphasized titles (used on works.html and project pages). */
strong em a,
em strong a {
    color: #ffffff;
}
