body {
    margin: 0;
    padding: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
	font-family: 'Unica One', serif;
}
		
.rectangle-container {
    display: inline-flex; /* Fit the container tightly around the content */
    padding: 5px;
	width: 850px;
	background: white;
    border: 2px solid black;
}

.progress-container {
	position: relative;
    background-color: #000;
	width: 850px;
}
		
.progress-bar {
	display: flex;
	align-items: center;
	justify-content: center;
}
		
.progress-bar-text {
	position: relative;
	z-index: 1;
	width: 100%;
	text-align: center;
	color: white;
	font-weight: bold;
	font-size: 1.7em;
}
		
.progress-fill {
	animation: glow 1.5s ease-in-out infinite;
	width: 5%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: green;
}

.logo-container {
    display: flex;
    justify-content: center;
}
		
.logo {
	display: block;
	margin: 0 auto;
}

.spooky-link {
    color: black; /* Text color */
    text-decoration: dotted underline; /* Dotted underline */
    margin-top: 10px; /* Space above the link */
    display: block; /* To center the link */
	text-align: center;
	font-size: 1.5em;
}

.spooky-link:hover {
    color: white; /* Text color on hover */
}

.spooky-link:visited {
    color: black; /* Text color for visited links */
}
			
@keyframes glow {
    0%, 100% {
		box-shadow: 0 0 5px rgba(0, 255, 0, 0.7), 0 0 10px rgba(0, 255, 0, 0.7), 0 0 15px rgba(0, 255, 0, 0.7);
    }
	
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 0, 0.9), 0 0 30px rgba(0, 255, 0, 0.9), 0 0 40px rgba(0, 255, 0, 0.9);
    }
}