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

html, body {
    height: 100%;
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    font-family: monospace; 
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 100vw;
    max-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.username {
    color: #4a4a4a;
    font-size: 1.1rem;
    letter-spacing: 3px;
    user-select: none;
}
