body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
    text-align: center;
}

img {
    max-width: 50%; 
    height: auto;
    pointer-events: none;
}

@media (max-width: 600px) {
    img {
        max-width: 90%;
    }
}