body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
	overflow-y: hidden;
	overflow-y: hidden;
	display: flex;
    flex-direction: column;
    background-image: url('assets/snowy_village_illustration.webp');
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    font-family: Arial, sans-serif; /* Example font */
	-webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard syntax */
}



/* Main Page Container */
.page-container {
   display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 60px; /* If you have a fixed navbar */
    flex-grow: 1;
	height: 100vh;
	justify-content: center; 
}

#canvas-container {
    display: flex;
    width: 90vw;
    height: auto;
    min-width: 0; /* Prevent overflow */
    align-items: center;
    justify-content: space-between; /* This ensures that the gaps are at the ends */
	margin-left: 3%; /* 3% padding on the left */
    margin-right: 3%; /* 3% padding on the right */
}

/* Styles when 'clock' class is applied */
#canvas-container.clock{
    background-color: #1f1f1f; /* Example: Light background for clock mode */
    color: #333; /* Dark text color */
    /* Other styles specific to clock mode... */
	border:solid 1.2vw #eee;
  border-bottom-color:#fff;
  border-left-color:#eee;
  border-radius:26px;
  border-right-color:#eee;
  border-top-color:#ddd;
  box-shadow: 0px 35px 25px 15px rgba(0,0,0,.75), inset 0 5px 15px 5px rgb(0 0 0 / 62%);
  box-sizing:border-box;
 
  
  
  
  }



/* Styles when 'countdown' class is applied */
#canvas-container.countdown{
   background-color: #333; /* Example: Light background for clock mode */
    /* Other styles specific to clock mode... */
	border:solid 1.2vw #eee;
  border-bottom-color:#fff;
  border-left-color:#eee;
  border-radius:26px;
  border-right-color:#eee;
  border-top-color:#ddd;
  box-shadow: 0px 35px 25px 15px rgba(0,0,0,.75), inset 0 5px 15px 5px rgb(0 0 0 / 62%);
  box-sizing:border-box;
  
  
}

/* Hide labels by default */
.time-label {
    display: none;
    /* Other styles... */
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0px 0px 16px rgba(255, 255, 255, 0.42); }
    50% { text-shadow: 0px 0px 16px rgba(255, 255, 255, 0.84); } /* Increase glow */
}


/* Show labels only in countdown mode */
#canvas-container.countdown .time-label {
    display: inline; /* or 'block' depending on your layout */
    color: #FFF;
    text-shadow: 0px 0px 16px rgba(255, 255, 255, 0.42);
    font-family: Inknut Antiqua;
    font-size: clamp(1.5vw, 3%, 64px); /* Adjust values as necessary */
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    animation: textGlow 1s infinite; /* Apply the animation */
	-webkit-text-stroke-width: 1px; 
            -webkit-text-stroke-color: #00000075;
	white-space: nowrap; /* Prevents text wrapping */
	margin-top: 1vh; /* Adjust based on your design */
    margin-bottom: 1vh;
}

#canvas-container.countdown .time-label::first-letter {
    text-transform: uppercase;
}




/* Sticky Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: linear-gradient(180deg, rgba(255, 6, 6, 0.53) 0%, rgba(255, 6, 6, 0.00) 100%);
    color: white;
    position: fixed; /* Make navbar fixed at the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 100; /* Ensure navbar is above other elements */
}

.left-nav-container {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: flex-start; /* Align items to the left */
    flex-grow: 1; /* Allow the container to grow if needed */
}

.navbar-logo {
    height: 56px; /* Set the height to 40px */
    width: auto; /* Maintain the aspect ratio */
	padding: 0 .5vw 0 0
}

.navbar-logo-links {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 50px;
}

.navbar-links {
    list-style: none; /* Removes bullet points */
    display: flex; /* Ensures horizontal layout */
    padding-left: 0; /* Removes default padding */
    align-items: center; /* Align items vertically */
	margin-left: 10px;
}

.navbar-controls {
    display: flex;
    align-items: center;
	margin-left: 10px;
	margin-right: 10px;
	
}

.navbar-links a {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Inknut Antiqua', serif; /* Only need to declare once */
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

 .navbar-links a:hover {
    color: #FFF; /* White color for active and hover states */
}


.navbar-links a.active, .navbar-links a:active {
    color: #FFF; /* White color for active and hover states */
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.67); /* Text shadow for better visibility */
    /* Add any other styles you want for the active and hover states */
}

.navbar-links li {
    padding: 0 1.5vw 0 0;
	white-space: nowrap;
}

/* Right Navigation Container */
.right-nav-container {
    display: flex;
	flex-direction: row;
    align-items: center;
}

.toggle-container, .icon-group {
    margin-left: 10px; /* Adjust as needed */
	display:flex;
	white-space: nowrap;
}


footer {
    display: flex; /* Use flexbox */
    align-items: center; /* Center content vertically */
    justify-content: space-between; /* Adjust this as needed, e.g., center, space-around */
    height: 60px; /* Adjust to your footer's height */
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    margin: 0;
    padding: 5px 20px; /* Add some padding */
}
/* Styles for the .cc-license class */
.cc-license p {
    font-size: 12px; /* Adjust the font size as needed */
    color: black;
    text-align: left; /* Align text to the left */
    margin: 0; /* Adjust margin as needed */
    padding: 0; /* Adjust padding as needed */
    font-family: 'Inknut Antiqua', serif; /* Only need to declare once */
    line-height: normal;
    text-decoration: none;
}

.cc-license a {
    color:black; /* Color for links */
    text-decoration: none; /* No underline for links */
}

.cc-license a:hover {
    text-decoration: underline; /* Underline on hover for links */
	rgba(255, 6, 6, 0.53);
}

.cc-license {
  flex-grow: 1;
  flex-shrink: 0;
}

.donate {
  flex-shrink: 1;
  flex-grow: 0;
}
.donate img {
  vertical-align: middle;
}


#fullscreen-btn {
    color: white;
    border: none;
    padding: 0 0.5vw 0 0.5vw;
    cursor: pointer;
}

.icon-group > span {
    margin-right: 10px; 
	margin-left: 20px;/* Space between the text and the first button */
	font-size:14px;
	color: #FFF; /* White color for active and hover states */
    align-items: center;
  cursor: pointer;
  display:flex;
  font-family:'Inknut Antiqua', serif;
}

.toggle-label  {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-right: 10px; /* Space between toggles */
	white-space: nowrap; /* Prevents text from wrapping */
}

.toggle-icon {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-right: 10px; /* Space between toggles */
	white-space: nowrap; /* Prevents text from wrapping */
}

/* Existing styles for toggle label text */
.toggle-label span {
    margin-left: 5px; /* Space between the toggle icon and the text */
    /* Other default styles */
    text-shadow: none; /* No glow effect by default */
	opacity:0.8;
	 transition: opacity 0.3s;
	 font-size:14px;
	color: #FFF; /* White color for active and hover states */
    
}
.toggle-label:hover span {
    opacity: 1; /* Full opacity on hover */

}

/* Target the label text for glowing effect when toggle is on (checked) */
#seconds-toggle:checked ~ span:last-child,
#madness-toggle:checked ~ span:last-child,
#autoset-toggle:checked ~ span:last-child {
    text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.67); /* Glow effect */
	opacity:1;
}






/* Styling for the text next to the toggle */
.toggle-label span:not(.toggle-icon) {
    margin-left: 5px; /* Space between the toggle icon and the text */
    /* Other styling for the label text */
}







    .burger-menu {
        display: hidden;
    }

    .navbar-links.active {
        transform: translateX(0);
    }
}



#canvas-container .time-group img {
    flex: 1; /* Each image will take equal space */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Prevent stretching */
}


#canvas-container .time-group img:not(:last-child) {
    margin-right: 8px; /* Space between images */
}




/* Time groups will fill the available space */
.time-group {
    display: flex;
	flex-direction: column; /* Align items in a row */
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap; /* Prevent wrapping */
    width: 100%;
	flex: 1; /* Allows each time group container to grow or shrink */
    min-width: 0; /* Prevents flex items from overflowing their container */
    justify-content: center;
	padding: 0.81vw 0.81vw; /* Add padding on left and right */
    /* If there are two time groups (hours and minutes), each would take half of the remaining space */
    /* If there are three time groups (hours, minutes, seconds), each would take a third of the remaining space */
}

/* Images will take equal space within their container and maintain aspect ratio */
.time-group img {
    /* Calculate width, subtracting the total gap space from the viewport width */
    height: auto;
	max-height: 45vh;
    object-fit: contain;
	border-radius: 8%;
	margin-right: 8px;
	flex: 1; /* Grow to fill the available space */
	transition: opacity 0.5s ease-in-out; /* Transition effect for the opacity */
}




/* Remove margin from the last image in the group to avoid unnecessary spacing at the end */
.time-group img:last-child {
    margin-right: 0;
}

.time-group img.fading-out {
    opacity: 0; /* Set opacity to 0 for the fade-out effect */
}

/* #second-colon.colon{
    display: none !important;
} */




.circle {
    width: 0.81vw; /* Adjust size as needed */
    height: 0.81vw; /* Adjust size as needed */
    border-radius: 20%;
    background-color: #fff; /* Adjust color as needed */
    box-shadow: 0 0 8px #fff; /* Adjust color and size of glow as needed */
    margin: 15px 0; /* Adjust spacing as needed */
    opacity: 10; /* Adjust for desired intensity */
    transition: opacity 0.5s ease-in-out;
	-webkit-text-stroke-width: 1px; 
    -webkit-text-stroke-color: #00000075;
}

/* To make the circles "blink" every second */
@keyframes blink {
  0%, 100% { opacity: 0; }
  0% { opacity: 0.7; }
}

.circle.blink {
  animation: blink 1s infinite;
}

/* control the display of the colon based on the  mode clock/countdown */
/* control the display of the seconds colon based on the displayseconds */
#second-colon {
    display: none; /* Hidden by default */
}

#days-hours-colon{
  display:none;
}

.colon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0.5vw;
}

#canvas-container.countdown .colon{
  display: none;
}

#canvas-container.clock.displayseconds #second-colon {
    display: flex;
}

#canvas-container.countdown #second-colon {
    display: none;
}

/* Control if the seconds needs to be displayed or hidden based on the presence of the displayseconds class */
#seconds-container {
   display: none; 
}
#canvas-container.displayseconds #seconds-container {
  display: flex; 
}

/* control the dipslay of the days based pn the mode class: clock/countdown */
#canvas-container.countdown #days-container {
  display: flex;
}
#canvas-container.clock #days-container {
  display: none;
}


#fullscreen-btn img {
    height: 40px; /* Increased height by 8px */
    width: 40px; /* Increased width by 8px */
}

/* Hide the actual checkbox inputs */
#seconds-toggle, #madness-toggle, #autoset-toggle {
  display: none;
}

/* Hide the actual checkbox inputs */
/* #seconds-toggle, #madness-toggle {
  display: none;
} */

/* Style the label which will act as our toggle switch */
.toggle-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family:'Inknut Antiqua', serif;
}

.toggle-icon {
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 10px;
  position: relative;
  margin-left: 10px; /* Adjust as necessary */
  vertical-align: middle; /* Align with the text */
}

.toggle-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

/* Change background and toggle position when checked */
#seconds-toggle:checked + .toggle-icon,
#madness-toggle:checked + .toggle-icon,
#autoset-toggle:checked + .toggle-icon {
  background-color: #2196F3;
}

#seconds-toggle:checked + .toggle-icon::before,
#madness-toggle:checked + .toggle-icon::before,
#autoset-toggle:checked + .toggle-icon::before {
  transform: translateX(20px);
}

/* Style for the text next to the toggle */
.toggle-label span:not(.toggle-icon) {
  margin-left: 5px; /* Space between the toggle icon and the text */
  font-size:14px;
  
  
  
}


.flex {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 2rem;
	padding: 1rem;
	background-color: hsl(0 0% 100% / 0.5);
	border: 1px #ccc solid;
	margin-top: 5rem;
}

article {
	max-width: 700px;
	min-width: 300px;
}

.samples {
	width: min-content;
}

.grid {
	display: grid;
	width: min-content;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1rem;
}



button {
	white-space: nowrap;
}

code {
	background-color: hsl(60 80% 80%);
	padding-inline: 4px;
}

.icon-button {
	position: relative;
	display:flex;
	align-items:center;
    background: none; /* No background color */
    border: none; /* No border */
    cursor: pointer;
    padding: 0; /* No padding */
    margin-right: 4px; /* Space between buttons */
    opacity: 0.8; /* Default opacity set to 80% */
    transition: opacity 0.3s; /* Smooth transition for opacity */
}

.icon-button img {
    height: 32px; /* 32px tall icons */
}

.icon-button:last-child {
    margin-right: 0; /* No margin for the last button */
}

.icon-button:hover {
    opacity: 1; /* Full opacity on hover */
    filter: brightness(1.2); /* Brightness increase on hover */
}

.icon-button:active img {
    filter: url(#glow-effect); /* Apply glow effect on click */
}

.toggle-container {
    /* Example styles */
    display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start; /* Adjust as needed */
    align-items: center;
    padding: 4px;
    margin: 8px;
    /* Add any additional styles as needed */
}

/* Hide Footer in Fullscreen Mode */
.fullscreen-active footer {
    display: none;
}

.fullscreen-active .navbar-controls {
    display: none;
}


/* Fullscreen Mode - Initial State */
.fullscreen-active .navbar * {
    visibility: hidden; /* Hide all elements */
    transition: visibility 0s, opacity 0.3s ease; /* Smooth transition for opacity */
}

.fullscreen-active .navbar .fullscreen-btn-container,
.fullscreen-active .navbar .fullscreen-btn-container * {
    visibility: visible; /* Keep fullscreen button visible */
}

/* Navbar Hover State in Fullscreen Mode */
.fullscreen-active .navbar:hover * {
    visibility: visible; /* Show all elements on hover */
}

/* Optional: Specific transition delay for visibility to avoid flickering */
.fullscreen-active .navbar:hover * {
    transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

@keyframes glowingText {
  0% {
    text-shadow:
      0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #969f7e, 0 0 82px #d11c1c, 0 0 92px #c2dc22, 0 0 102px #0fa, 0 0 151px #0fa;
  }
  25% {
    text-shadow:
      0 0 7px #f0f, 0 0 10px #f0f, 0 0 21px #f0f, 0 0 42px #ff0, 0 0 82px #f00, 0 0 92px #0f0, 0 0 102px #00f, 0 0 151px #0ff;
  }
  50% {
    text-shadow:
      0 0 7px #0ff, 0 0 10px #0ff, 0 0 21px #0ff, 0 0 42px #0f0, 0 0 82px #00f, 0 0 92px #f0f, 0 0 102px #ff0, 0 0 151px #f00;
  }
  75% {
    text-shadow:
      0 0 7px #00f, 0 0 10px #00f, 0 0 21px #00f, 0 0 42px #f0f, 0 0 82px #0f0, 0 0 92px #0ff, 0 0 102px #ff0, 0 0 151px #f00;
  }
  100% {
    text-shadow:
      0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #969f7e, 0 0 82px #d11c1c, 0 0 92px #c2dc22, 0 0 102px #0fa, 0 0 151px #0fa;
  }
}

#countdown-text {
    text-align: center; /* Center the text */
    font-family: 'Inknut Antiqua', serif; /* Font family (change as needed) */
    font-size: 4vw; /* Font size relative to viewport width */
    color: #FFF; /* Text color */
    margin-top: 8px; /* Space above the text */
    font-size: clamp(18px, 4vw, 88px); /* Adjusts between 18px and 48px based on viewport width */
    animation: glowingText 8s infinite alternate;
}

#clock-text {
    text-align: center; /* Center the text */
    font-family: 'Inknut Antiqua', serif; /* Font family (change as needed) */
    font-size: 4vw; /* Font size relative to viewport width */
    color: #FFF; /* Text color */
    margin-top: 8px; /* Space above the text */
    font-size: clamp(18px, 4vw, 88px); /* Adjusts between 18px and 48px based on viewport width */
    animation: glowingText 8s infinite alternate;
}


#clock-text, #countdown-text {
    font-family: 'Pacifico', cursive;
	margin-top:50px;
}

/* Toggle coundown and clock text based on the mode class: clock/countdown */
.countdown #countdown-text {
  display: block;
}
.countdown #clock-text {
  display: none;
}
.clock #countdown-text {
  display: none;
}
.clock #clock-text {
  display: block;
}


/* Time Group Container */
.time-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    /* Adjust the width dynamically based on content */
    width: fit-content;
    margin: 0 auto; /* Center the group if needed */
}

/* Image Group */
/* Image Group */
.image-group {
    display: flex;
    flex-direction: row;
    justify-content: space-around; /* Distribute space evenly around items */
    align-items: center;
    width: 100%; /* Full width of the parent container */
}

/* Image Container */
.image-container {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin: 0 0.4vw; /* Proportional spacing based on viewport width */
}

.image-container::after {
    content: '';
    position: absolute;
    inset: 0; /* Shorthand for top/right/bottom/left */
    box-shadow: inset 0 0 5px 5px black;
    pointer-events: none; /* Ensures the shadow doesn't interfere with clicks */
	border-radius:8%;
}

/* Image Styling */
.image-container img {
    display: block;
    max-width: 100%; /* Ensure it doesn't exceed the container */
    height: auto; /* Maintain aspect ratio */
    /* Make sure image fills the container */
    width: 100%;
}

.buymeacoffee {
    margin-left: auto; /* Pushes the div to the right */
    /* Additional styling if needed */
}

.buymeacoffee a img {
    max-width: 100%; /* Ensure it doesn't overflow */
    height: auto; /* Maintain aspect ratio */
}

[data-tooltip] {
	
	position: relative;

	--carat-size: 5px;
	--offset: 0.5rem;

	--tooltip-position: calc(100% + var(--offset));
	--carat-position: calc(100% + var(--offset) - var(--carat-size) / 2);
font-family:'Inknut Antiqua', serif;
white-space:nowrap;

	&::before,
	&::after {
		opacity: 0;
		pointer-events: none;
		display: block;
		position: absolute;
		pointer-events: none;
		transition: opacity 0.3s ease-out;
	}

	&::before {
		content: "";
		background-color: black;
		height: var(--carat-size);
		width: var(--carat-size);
		opacity: 0;
	}

	&::after {
		content: attr(data-tooltip);
		color: hsl(60 80% 80%);
		background-color: black;
		padding: 0.3rem;
		border-radius: 4px;
		min-width: 10rem;
		text-align: center;
		z-index: 10;
		opacity: 0;
	}

	/* exposes on hover and focus (when focus is obtained 
		 via keyboard) */
	&:hover::before,
	&:hover::after {
		display: block;
		opacity: 1;
		pointer-events: unset;
	}

&[data-tooltip-anchor="bottom"]::before {
		top: var(--carat-position);
		left: 50%;
		transform: translateX(-50%) rotate(45deg);
	}

	&[data-tooltip-anchor="bottom"]::after {
		top: var(--tooltip-position);
		left: 50%;
		transform: translateX(-50%);
	}
}

.phone {
  height: 50px;
  width: 100px;
  border: 3px solid white;
  border-radius: 10px;
  animation: rotate 1.5s ease-in-out infinite alternate;
  /* display: none; */
}

.message {
  color: white;
  font-size: 1em;
  margin-top: 40px;
  font-family: Inknut Antiqua;
  color: #FB4264;
  font-size: 5vw;
  line-height: 9vw;
  text-shadow: 0 0 3vw #F40A35;
  /* display: none; */
}

.message {
  animation: message 1s ease infinite;
  -moz-animation: message 1s ease infinite;
  -webkit-animation: message 1s ease infinite;
}

@keyframes message {
  0%,
  100% {
    text-shadow: 0 0 1vw #FA1C16, 0 0 3vw #FA1C16, 0 0 10vw #FA1C16, 0 0 10vw #FA1C16, 0 0 .4vw #FED128, .5vw .5vw .1vw #806914;
    color: #FED128;
  }
  50% {
    text-shadow: 0 0 .5vw #800E0B, 0 0 1.5vw #800E0B, 0 0 5vw #800E0B, 0 0 5vw #800E0B, 0 0 .2vw #800E0B, .5vw .5vw .1vw #40340A;
    color: #806914;
  }
}


@keyframes rotate {
  0% {
		transform: rotate(0deg)
	}
	50% {
		transform: rotate(-90deg)
	}
	100% {
		transform: rotate(-90deg)
	}
}

.rotation-hint{
	display:none;
	justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
	flex-direction:column;
}



@media screen and (min-width: 260px) and (max-width: 430px) {
  [data-tooltip]::before,
    [data-tooltip]::after {
        display: none !important;
    }
  
  .page-container{
	  padding-top:0px;
	  padding-bottom:0px;
	  margin-top:20px;
  }

.rotation-hint{
	display:flex;
}
.navbar{
	flex-wrap: wrap;
	padding: 10px 10px;
	margin-bottom:20px;
}	
	
 .navbar-logo {
        height: 26px;
    }

.navbar-logo-links {
        height: 24px;
    }

.navbar-links a {
        font-size: 3.5vw;
        margin-right: 8px;
    }
	.navbar-controls{
	flex-direction:column;
	}
	
	
	 
.toggle-label span:not(.toggle-icon){
		font-size:14px;
	}
	 
	#canvas-container.countdown{
		border-radius:12px;
	}
	
	#canvas-container.clock{
		border-radius:12px;
	}
	
	#clock-text, #countdown-text {
    font-size: 6vw;
	margin-top:10px;
}

	 
}
/* Adjustments for smaller screens */
@media only screen and (orientation: landscape) and (max-width: 932px){
    [data-tooltip]::before,
    [data-tooltip]::after {
        display: none !important;
    }
	
	#clock-text, #countdown-text {
    font-size: 6vh;
	margin-top:15px;
}

.right-nav-container{
	  margin-bottom:0px;
  }
	
	.page-container{
		padding-top:0px;
		margin-top:20px;
		justify-content:flex-start;
	}
	.navbar {
        padding: 5px 5px;
        flex-wrap: wrap;
		height: 20px;
		margin-bottom:20px;
    }

    .navbar-logo {
        height: 20px;
    }

.navbar-logo-links {
        height: 16px;
    }

    .navbar-links a {
        font-size: 1.8vw;
        margin-right: 8px;
		height: 36px;
		
    }

    .icon-group {
        margin-left: 0;
    }

    #canvas-container.countdown .time-label {
        font-size: 1.5vw; /* Adjust if needed */
    }
	
	 footer {
        display: none;
		height:30px;
    }
	
	
	#canvas-container.countdown{
		border-radius:12px;
	}
	
	#canvas-container.clock{
		border-radius:12px;
	}
	.toggle-label{
		font-size:12px;
		}
	
}

@keyframes fall {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 1;
  }
}
@keyframes sway {
  0% {
    margin-left: 0;
  }
  25% {
    margin-left: 50px;
  }
  50% {
    margin-left: -50px;
  }
  75% {
    margin-left: 50px;
  }
  100% {
    margin-left: 0;
  }
}

/* Existing CSS ... */

/* Styling for the h1 header */
h1 {
    
    text-align: center; /* Center alignment */
	display: inline; /* or 'block' depending on your layout */
    color: #FFF;
    text-shadow: 0px 0px 16px rgba(255, 255, 255, 0.42);
    font-family: Inknut Antiqua;
    font-size: clamp(1.5vw, 3%, 64px); /* Adjust values as necessary */
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    animation: textGlow 1s infinite; /* Apply the animation */
	-webkit-text-stroke-width: 1px; 
            -webkit-text-stroke-color: #00000075;
    
}

/* Styling for the main content */
/* Style for the content-wrapper */
.content-wrapper {
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Blur effect */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Padding */
  margin: 20px; /* Margin */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Box shadow for depth */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5em; /* Adjusted font size for smaller screens */
    }
    .content-wrapper {
        padding: 15px; /* Reduced padding for smaller screens */
    }
}

/* Further existing CSS ... */


