:root {
    --power-blue: #2D7FBF;
    --castle-grey: #BDC3C7;
    --eternia-orange: #E64A19;
    --void-black: #000000;
    --bright-white: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--void-black);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: sans-serif;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.image-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    border: 4px solid var(--castle-grey);
}

.overlay-text {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--eternia-orange);
    font-weight: bold;
    font-size: 4rem;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin: 0;
    text-shadow: 3px 3px 0px var(--void-black), -1px -1px 0 var(--void-black);
    font-family: 'Arial Black', Impact, sans-serif;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .overlay-text {
        font-size: 2rem;
    }
}