.advent-calendar {/*
	display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;
    width: 400px;
    height: 400px; */
	
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Spacing between doors */
    max-width: 100%; /* Adjust as needed for responsiveness */
    margin: 20px auto;
}

.door-container {
    position: relative;
    width: 150px;
    height: 150px;
    overflow: hidden;
    margin: 10px;
    text-align: center;
	user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.text {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    width: 150px;
    background: black;
    position: absolute;
	border: 1px solid white;
	border-radius: 10px;
    visibility: hidden;
    z-index: 1;
	opacity: 0;
	transition: opacity 1s ease, visibility 1s ease; 
	box-sizing: border-box;
}

.door {
    position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    height: 100%;
    background: #FF8C00;
	border: 1px solid white;
	border-radius: 10px;
    z-index: 2;
    cursor: pointer;
    transition: opacity 1s ease, visibility 1s ease;
	box-sizing: border-box;
	color: white;
}

.door.can-open {
    border: 2px solid #F7E7CE;
    cursor: pointer;
    animation: pulse 1.5s infinite ease-in-out;
}

.door.open {
	opacity: 0;
	visibility: hidden;
}

@keyframes pulse {
    0%, 100% {
        border: 1px solid #F7E7CE;
    }
    50% {
        border: 5px solid #F7E7CE;
    }
}

.door.open + .text {
	opacity: 1;
    visibility: visible;
}

.door.shaking {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0% {
		opacity: 0.5;
	}
	100% {
        opacity: 1;
    }
}

.nav-button {
	font-family: 'DOS_VGA';
	width: 150px;
	border: none;
	color: #000000;
	background-color: #5555FF;
	text-decoration: none;
	padding: 0px 5px 0px 5px;
	margin-top: 10px;
}

.nav-button:hover,
.nav-button:focus {
	color: #5555FF;
	background-color: #000000;
	border: 1px solid #5555FF;
}

.nav-button:active {
	color: #000000;
	background-color: #5555FF;
}