*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;   
   }
   body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #415a77;
   }
   
   .box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 300px;
    margin-top: 200px;
    background-color: #a7c957;
    width: 700px;
    border-radius: 20px;
box-shadow: 0px 0px 10px white;   
}
p{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 60px;
    color: blue;

}
   button{
       height: 50px;
       color: white;
       background-color: red;
       width: 300px;
       font-size: 30px;
       border-radius: 10px;
       margin-top: 50px;
       font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
       font-weight: 800;
       padding: 5px;
       
   }