body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 10px; /* para hindi dumikit sa gilid sa mobile */
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px; /* para sa malalaking screen */
    box-sizing: border-box;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
}

button {
    background-color: #a796e8;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%; /* para sa mobile mas maganda */
    max-width: 200px;
    margin-top: 10px;
}

button:hover {
    background-color: #a591f5;
}

/* Media queries para sa mas maliit na screen */
@media (max-width: 600px) {
    h1 {
        font-size: 20px;
    }

    .container {
        padding: 15px;
    }

    button {
        font-size: 14px;
        max-width: 100%;
    }
}
