/* Zero out default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000; /* Pure black background */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical center */
    align-items: center;     /* Horizontal center */
    overflow: hidden;        /* Prevents scrolling */
}

.shrine-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.center-image {
    max-width: 90vw;   /* Responsive width */
    max-height: 80vh;  /* Responsive height */
    height: auto;
    display: block;
}

footer {
    padding-bottom: 2rem;
    color: #333;
    font-family: monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
}