*{
    margin: 0px;
    padding: 0px;
    font-family: cursive;
    box-sizing: border-box;
}
body{
    background-color: blanchedalmond;
    width:100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    background-color: black;
    height:200px;
    width:300px;
    color: azure;
    padding: 40px;
    border-radius:60px 10px 60px 10px;
    box-shadow: 5px 5px 10px black;
}
.heading{
    color: rgb(198, 133, 35);
    text-align: center;
}
h1{
    font-size: 35px;
}
button{
    border: none;
    outline: none;
    font-size: 18px;
    padding: 4px;
    border-radius: 5px;
    margin: 10px;
    color: azure;
    cursor: pointer;


}