
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family:monospace;

}
body{
    background-color: blue;
    display: flex;
    height: 70vh;
    width: 100%;
    justify-content: center;
    align-items: center;
}


.box{
    background-color: white;
    width: fit-content;
    height: fit-content;
    padding: 20px;
    border-radius: 60px 10px ;
    box-shadow: 5px 5px 5px white;

}

.heading{
    color: aqua;
    text-align: center;
    font-size: 40px;
}

h1{
    text-align: center;
    font-size: 50px;
}

button{
    outline: none;
    border: none;
    padding: 15px;
    margin: 15px;
    border-radius: 5px;
    color: white;
}


