body {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fed0ae);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

h1 {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

button {
    padding: 20px 40px;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    background: white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

button:hover {
    transform: scale(1.1);
    background: #333;
    color: white;
}