body {
      display: flex;
     flex-direction: column;
      background-color: #2D3436;  /* Sets page background */
     /* background-color: #D12O52;   Sets page background */
      
      font-family: Arial, sans-serif; /* Sets default font for all text */
      margin: 0; /* Removes default browser white space around edges */
      color: #333; /* Sets default text color */
     text-align:center;
     padding: 0px;
     box-sizing: border-box
    /* Smooth text rendering */
      -webkit-font-smoothing: antialiased;
}

     
   .buttons {
    background-color:#FF5C34;
    border:none;
    color:#FFFFFF;
    padding:10px 20px;
    text-align:center;
   font-size:20px;
   border-radius:8px;
    cursor:pointer;
    width:100%;
    transition:background-color 0.3s;
    }
    
   
