body {
    background: linear-gradient(to right, #af9aff, #bbccff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.container {
    text-align: center;
    color: white;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.brain {
    width: 100%;
    position: relative;
    z-index: 1;
    font-size: 100px;
    animation: scale 0.5s infinite;
}

.hand {
    position: absolute;
    top: -60px;
    left: 35px;
    font-size: 88px;
    z-index: 2;
    animation: pat 0.5s infinite;
}

@keyframes pat {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes scale {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
