* {
    box-sizing: border-box;
}

html {
    touch-action: manipulation;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

header h1 {
    font-size: clamp(1.8rem, 8vw, 3rem); 
    font-weight: 900;
    margin: 0 0 10px 0;
}

#clickCounter {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

#banana {
    display: block;
    width: 100%;
    max-width: 300px; 
    max-height: 40vh; 
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    cursor: pointer;
}

footer {
    margin-top: 20px;
    font-size: 0.7rem;
    opacity: 0.7;
}
