:root {
    --bg-color: #eef5ff;       /* Light, airy blue background */
    --accent-color: #4a90e2;   /* Solid blue for the button */
    --accent-hover: #357abd;   /* Darker blue for hover */
    --text-color: #2c3e50;     /* Dark slate blue for text */
    --secondary-text: #5a738e; /* Lighter slate for subtext */
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--bg-color);
    /* The Infamous Comic Sans */
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    color: var(--text-color);
    text-align: center;
}

/* Container spacing */
body > * {
    max-width: 500px;
    margin: 15px;
}

img {
    width: 220px; /* Made slightly larger */
    height: auto;
    border-radius: 25px;
    /* Keeps that cozy floating effect */
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 12px 20px rgba(74, 144, 226, 0.2));
}

p {
    font-size: 1.8rem; /* Bigger, bolder text */
    font-weight: bold;
    margin-bottom: 5px;
}

p:last-of-type {
    font-size: 1.1rem; /* Bigger subtext */
    color: var(--secondary-text);
    font-weight: normal;
    margin-top: 20px;
}

button {
    background-color: var(--accent-color);
    color: white;
    border: 4px solid #ffffff; /* Added a white border for that "sticker" look */
    padding: 20px 50px;
    font-size: 1.5rem; /* Large button text */
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-weight: bold;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 8px 0px #357abd; /* Retro "thick" button shadow */
}

button:hover {
    background-color: var(--accent-hover);
    transform: translateY(2px);
    box-shadow: 0 4px 0px #2a6299;
}

button:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0px #2a6299;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    img { width: 180px; }
    p { font-size: 1.4rem; }
    button { padding: 15px 35px; font-size: 1.2rem; }
}