body {
    margin: 0;
    padding-top: 20px;
    background-color: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* prevent all scrolling */
    text-align: center;
    box-sizing: border-box;
    }

.hi {
    font-size: 3rem;
    font-weight: bold;
    }
        
img {
    max-width: 80vw; /* dynamic width */
    max-height: calc(100vh - 200px); /* adjusts based on screen size */
    height: auto;
    width: auto;
    object-fit: contain;
    }

a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: underline;
    }

@media (max-width: 600px) {
    .hi {
        font-size: 2.2rem;
        }
    a {
        font-size: 1rem;
        }
    }