/* Body and general styling */
body {
    margin: 0;
    background: #111;
    color: #f5f5f5;
    font-family: "Playfair Display", serif; /* main font for body/title */
    text-align: center;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    z-index: 1000;
}

h1 {
    margin: 0;
    font-family: 'Playfair Display', serif; /* keep elegant */
    font-size: 2.5rem;
}

nav {
    margin-top: 10px;
}

/* Nav links with Lato */
nav a {
    font-family: 'Lato', sans-serif; /* new font for links */
    color: #f5f5f5;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s;
}

/* Strikethrough effect only */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 2px;
    width: 100%;
    background: #f5f5f5;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Container styling */
.container {
    margin-top: 150px; /* space for fixed header + nav */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 150px);
}

img {
    width: 300px;
    margin: 20px 0;
}

p {
    font-size: 1.5rem;
    color: #ccc;
}

/* Audio player styling */
audio {
    margin: 30px 0;
    width: 80%;
    max-width: 500px;
}

/* Credit link styling */
.credit {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.credit a {
    color: #f5f5f5;
    text-decoration: underline;
}

.credit a:hover {
    color: #ccc;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: #111;
    color: #888;
    font-size: 0.9rem;
}

footer a {
    color: #f5f5f5;
    text-decoration: underline;
}

footer a:hover {
    color: #ccc;
}
