
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.p1,.p2 {
    font-size: 50px;
    font-weight: bold;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #333;
    border-radius: 10px;
    margin: 20px;
    background-color: rgb(0, 0, 0);
    color: white;

}

button {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 100px;
    background-color: #0385ff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #555;
}
#result{
    font-size: 30px;
    font-weight: bold;
}