/* Import a western-style font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: 'Staatliches', Arial, sans-serif;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.centered-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 2px 2px 8px #222;
}

.main-image {
    max-width: 90vw;
    max-height: 60vh;
    width: auto;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 0 24px #222;
    object-fit: contain;
}

.photo-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

.credit-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: #e4405f;
}

.footer {
    padding: 1rem;
    text-align: center;
    background: #000;
    margin-top: auto;
}

.instagram-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #e4405f;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

@media (max-width: 600px) {
    .main-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .main-image {
        max-width: 98vw;
        max-height: 40vh;
    }
}
