
/*
    Website (CSS) modified by Derek John Evans on the 20th August 2026.
*/

body {
    background-color: #606060;
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-position: center center; 
    font-family: "Literata", serif;
    font-size: 16px;
    color: #222222;
    margin: 0;
}

.container {
    width: 95%;
    max-width: 1260px;
    min-width: 780px;
    margin: 8px auto;
    background-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 1);
    overflow: clip;
    border-radius: 12px;
}

header {
    background-color: black;
    background-image: url("../images/header.png");
    background-repeat: no-repeat;
    height: 150px;
}

header p {
    padding-right: 10px;
    text-align: right;
    font-style: italic;
    color: white;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 1);
}

nav {
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #d0d0d0;
    border-bottom: 1px solid darkgray;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);  
}

nav img {
    width: 24px;
    vertical-align: middle;
    margin-right: 4px;
}

nav a {
    padding-left: 8px;
    padding-right: 8px;
}

section {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

footer {
    clear: both;
    background-color: #e0e0e0;
    text-align: center;
    border-top: 1px solid darkgray;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 4px;
}

footer p {
    font-weight: bold;
    font-style: italic;
}

a:link {
    color: black;
}

a:visited {
    color: black;
}

a:hover {
    color: blue;
    text-decoration: none;
}

a:active {
    color: red;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 18px;
}

p.warning {
    font-style: italic;
    font-weight: bold;
}

p.testimony {
    font-style: italic;
    padding: 10px;
    margin: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

p.videocredit {
    text-align: center;
    font-weight: bold;
    font-style: italic;
}

p.socialmedia {
    text-align: center;
    font-weight: bold;
    font-style: italic;    
}

img.photo {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

img.right {
    float: right;
    margin-left: 8px;
}

img.left {
    float: left;
    margin-right: 8px;
}

img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.validw3c {
    border: 0;
    width: 88px;
    height: 31px;
}

div.inventory {
    display: flex;
    justify-content: center; 
    align-items: center;   
}

div.inventory ol {
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 70%;
    background-color: white;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #bbbbbb;
    list-style-type: lower-alpha;
}
div.inventory ol li {
    color: darkslategray;
    font-weight: bold;
}

div.inventory ol li li {
    color: #333333;
    font-weight: normal;
    font-size: 14px;
}

table.discography {
    margin-left: auto;
    margin-right: auto;
    width: 60%; 
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid #bbbbbb;
    border-collapse: collapse;
}

table.discography th {
    background-color: #dddddd;
    padding: 2px;
    font-size: 14px;
}

table.discography td {
    padding: 4px;
    font-size: 14px;
    text-align: center;
}

ul.discography {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    background-color: white;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #bbbbbb;
}

ul.discography li {
    font-weight: bold;
    color: darkslategray;
}

ul.discography li li {
    font-weight: normal;
    color: #333333;
}