body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00c853, #00e676, #1de9b6);
}

.monke-button {
    margin-top: 20px;
    padding: 12px 24px;
    background: #ffffff22;
    border: 2px solid white;
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.2s ease;
}

.monke-button:hover {
    background: white;
    color: #00c853;
}
