body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1565c0; /* Deep blue background */
    overflow: hidden;
    font-family: 'Arial Black', sans-serif; /* Thicker, bolder font */
    transition: background-color 0.5s ease;
}

#container {
    text-align: center;
}

#seaLion {
    width: 400px; /* Bigger sea lion */
    height: auto;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.1s linear;
}

p {
    margin-top: 30px;
    color: #ffffff; /* White text for contrast against deep blue */
    font-size: 2rem; /* Much bigger text */
    letter-spacing: 1px;
    user-select: none;
    transition: all 0.5s ease;
}

/* Styles for when the lion has flown away */
body.game-over {
    background-color: white;
}

body.game-over p {
    color: black;
    font-size: 4rem; /* Even bigger for game over */
    font-weight: 900;
}
