body {
      display: flexbox;
     justify-content: center;
      background-color: #ff9900; /* 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;
    }
    
    #header-box {
        background-color:black;
       color:white;
       
        border:2px red
        margin top:20px;
        height:200px;
        padding:50px;
    }
    #welcome-box {
       border:2px black; 
       height:200px;
       padding:50px;
    }
    #display-time{
        background-color:black;
        color:white;
        padding:15px 32px;
    }
    .my-button {
    background-color:black;
    border:none;
    color:white;
    padding:15px 32px;
    text-align:center;
   font-size:16px;
   border-radius:20px;
    cursor:pointer;
    width:100%;
    transition:background-color 0.3s;
        
    }
    
    .parent-container{
         display:flex;
    
        justify-content: center;
    }
    
    .my-form {
        width:100%;
        background-color:red:
        border-radius: 8px;
    }
    .my-labels {
        margin-bottom: 15px;
    }
    my-input {
        box-sizing:border-box;
        width:100%;
        padding:15px 15px
        border:1px solid #ccc
        border-radius:8px;
        font-family:inherit;
    }
    
    .footer{
        
        color:black;
        height:auto;
        padding:50px
    }
    
button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
