body {
    font-family: 'Google Sans', sans-serif;
    /* A bright, cheerful jungle green */
    background-color: #2ecc71; 
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    overflow: hidden;
}

.container {
    text-align: center;
}

/* Fun Bouncing Animation for the Header */
.bounce-text {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.2);
    animation: bounce 2s infinite;
}

p {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* The Spinning Monkey with a Glow Effect */
.spinning-monkey {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border: 8px solid white;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    animation: monkey-spin 3s linear infinite;
}

/* Keyframes for the Spin */
@keyframes monkey-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Keyframes for the Text Bounce */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}
