/* File: css/digital-clock.css */
.text-clock {
                font-size: 66px;
                color: #F0907A;
                text-align: center;
                font-family: Segoe-UI-Light;
            }
            .btn-timer {
                background: transparent;
                border: 0px;
                padding: 10px;
            }
            .btn-timer:focus {
                border: 0px;
                outline: none;
            }
.timer-item {
              flex-basis: calc(33.33% - 20px);
              max-width: calc(33.33% - 20px);  /* Minus 20px for padding */
              box-sizing: border-box;
              padding: 10px;
              text-align: center;  
            }
            
            .timer-item a {
              text-decoration: none;  
              color: #5c6770;
              /*font-weight: bold;*/
            }
            
            .invisible-item {
              visibility: hidden;
            }
            	
            .timer-title {
            	align-items: center; 
            	justify-content: center;		
            	margin-top: 100px;
            }
            
            .notification {
                background-color: #f8d7da;
                border: 1px solid #f5c6cb;
                color: #721c24;
                padding: 10px;
                margin-top: 20px;
                margin-bottom: 10px;
                border-radius: 5px;
                text-align: center;
                font-size: large;
                line-height: 1.5em;
            }
            
            .notification a {
                color: #0056b3;
                text-decoration: underline;
            }            