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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.container {
    z-index: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url("https://camo.githubusercontent.com/ed1240827b41a16da55e625eb99e6162b2e0d0930065b653093349e646b59c1f/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f6869326b506f66564d5737306b2f67697068792e676966");
    background-size: cover; /* Ensure the background image covers the entire container */
    background-position: center; /* Center the background image */
}

h1 {
    color: #ff6b6b;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.click-area {
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    height: 100%;
}

img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s, left 0.5s ease, top 0.5s ease;
    position: absolute;
}

img:active {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
}

.click-counter {
    font-size: 1.5em;
    color: #4a4e69;
}

span {
    font-weight: bold;
    color: #ff6b6b;
}

/* Particle canvas */
canvas#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}