body {
    font-family: Arial, sans-serif;
    background-color: #ffe4e1;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 300px;
    height: 300px;
}

#trickyButton {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ff7f7f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

#trickyButton:hover {
    background-color: #ff5252;
}
