@charset "utf-8";
/* CSS Document */
body {
            font-family: "Raleway", sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100svh;
            margin: 0;
            background-color: #000;
        }
        .container {
            text-align: center;
        }
        button {
            font-size: 1.2em;
            width: 100px; height: 100px; border: 0; background: none; background-color: transparent; background-size: 70px; background-repeat: no-repeat; background-position: center;
            cursor: pointer; position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%);
        }
		
		.progress-container {
            width: 100%;
            margin: 0px auto;
            padding: 15px; box-sizing: border-box;
            position: fixed; bottom: 0; left: 0; color: #FFF;
        }
        
        .progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .progress-bar-wrapper {
            width: 100%;
            height: 4px;
            background-color:rgba(255,255,255,.5);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .progress-bar {transition: width 0.3s ease-in-out;
            width: 0%;
            height: 100%;
            background-color:#fff;
			
            
        }
        
        .status-text {
            margin-top: 4px;
            font-size: 12px;
        }
        
        .cycle-count {
        }
		button[disabled] { display: none;}
		
		h1 { margin: 0; font-size: 8vw; color: #FFF; font-weight: normal;}
		
		#playButton { background-image: url("../img/play.svg");}
		#pauseButton { background-image: url("../img/pause.svg");}

canvas { position: fixed; top:0; left:0; }

@media (orientation: landscape) {
	h1 { font-size: 4vw;}
}
