*{
    margin:0;
    padding: 0;
}

body
{
    background: linear-gradient(to right,rgb(209, 191, 191),rgb(54, 223, 194));
    font-family: sans-serif;
}

.container
{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal
{
    color: white;
    border-radius: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.596);
    display: flex;
    flex-direction:column;
    align-items: center;
}

button
{
    height: 50px;
    width: 50px;
    font-size: 1.2rem;
    margin:3px;
    background: rgba(95, 89, 89, 0.644);
    color: white;
    border: 0;
}

button:hover
{
    background: rgba(0, 0, 0, 0.767);
    cursor: pointer;
}

p
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 3px;
    color:black;
    font-size: 1.5rem;
    height: 40px;
    width: 220px;
    background: blanchedalmond;
    margin: 5px;
}