@charset "utf-8";
/* CSS Document */


    body, html {
        margin: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #282c34;
        font-family: Arial, sans-serif;
        color: white;
    }
    #hourglass {
        position: relative;
        width: 100px;
        height: 220px;
        /*border: 6px solid #5F9EA0;  Cadet blue border */
        transition: transform 0.5s;
			 border: 4px solid gold; /* Very thin, shiny gold border */
    }
    #sand {
        position: absolute;
        bottom: 0; /* Initially at the bottom */
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        background-color: #00CED1; /* Dark turquoise sand */
        border-radius: 50%;
        transition: bottom 0.5s;
    }
    #timerDisplay {
        margin-left: 10px;
        font-size: 26px;
        color: #4682B4; /* Steel blue for timer text */
    }
    #completionIndicator {
        display: none;
        color: #8A2BE2; /* Blue violet */
        font-size: 20px;
        margin-top: 25px;
    }
    button {
        border: none;
        color: white;
        background-color: #20B2AA; /* Light sea green buttons */
        padding: 10px 13px;
        cursor: pointer;
        font-size: 18px;
        margin: 5px;
    }
    .active {
        background-color: #4682B4; /* Highlight active timer */
			transform: translateY(1px);
			box-shadow: 0 2px #666;
    }
	
	
	
	
	@media (max-width: 600px) {
    #hourglass {
        width: 80px; /* Smaller size for smaller screens */
        height: 160px;
		
    }
    #timerDisplay, #completionIndicator, button {
        font-size: 18px; /* Smaller font size for readability on small devices */
    }
}
	
