body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;

    font-family: Georgia, serif;
    line-height: 1.6;

    color: #222;
    background-color: #fff;
}

img {
    width: 100%;
    height: auto;
}



h1, h2, h3, h4 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

a {
    font-family: Arial, Helvetica, sans-serif;

    color: #0056b3;
}

a:hover {
    color: #003d82;
}

time {
    font-style: italic;

    color: #666;
}



header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;

    background: rgba(227, 200, 130, 0.75);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

main {
    flex: 1;
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

footer {
    padding: 20px;

    background-color: #EDE4C3;
}

footer p {
    margin: 8px 0;
}



.logo img {
    display: block;
    width: 135px;
    height: auto;
    margin: 15px;

    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .15));
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px;
    padding: 0;

    list-style: none;
}

nav a {
    font-weight: bold;
    text-decoration: none;

    color: black;
}

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



.hero {
    width: 100%;
}

.hero img {
    display: block;
    width: 100%;
    height: auto;

    object-fit: cover;
}



section {
    margin-bottom: 40px;
}

article {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.news-image {
    width: 100%;
    max-width: 250px;
    height: auto;

    object-fit: cover;
}

.news-content {
    flex: 1;
    min-width: 280px;
}



.albums {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.albums > div {
    flex: 1;
    min-width: 250px;

    text-align: center;
}

.cover img {
    width: 60%;
    height: auto;

    border-radius: 6px;

    object-fit: cover;
}

.cover img:hover {
    opacity: 0.8;
    filter: grayscale(30%);
}