body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #e0f7ff, #a8d8ff);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: #d8f0ff;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);


    /* background-color: #ffffffcc;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px); */
}

h1 {
    margin-bottom: 0.5rem;
    color: #ffb6c1;
}

p {
    margin-bottom: 2rem;
    color: #ffb6c1;
}

button {
    font-size: 1.2rem;
    padding: 0.8rem 2 rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:hover {
    transform: scale(1.05);
}