/* Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Georgia, serif;
    background: white url('../images/background.webp') fixed no-repeat center top / cover;
    padding: 20px;
}

.container { max-width: 700px; margin: 0 auto; }

/* Common Links */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

.back-link:hover { background: #555; }

/* Headers */
h1 { text-align: center; font-size: 32px; margin-bottom: 30px; color: #333; }
h2 { margin-bottom: 20px; color: #333; }

/* Headers Images */
.header-img { text-align: center; margin-bottom: 30px; }
.header-img img { max-width: 100%; height: auto; border-radius: 4px; }

/* Footers */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    color: #999;
}

.footer a {
    color: #999;
    text-decoration: none;
}

.footer a:hover { color: #333; }
