* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
	background: transparent;
}

.main{
	z-index: -1;
}

.container {
    width: calc(100% - 40px);
    margin: 20px auto;
    columns: 4; /* Default columns for larger screens */
    column-gap: 20px; /* Adjusted gap for better responsiveness */
	margin-bottom: 128px;
}

.container .box {
    width: 100%;
    margin-bottom: 15px;
    break-inside: avoid;
}

.container .box img {
    max-width: 100%;
    border-radius: 15px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        columns: 3; /* Reduce columns on large tablets and smaller laptops */
        column-gap: 15px;
		margin-bottom: 128px;
    }
}

@media (max-width: 768px) {
    .container {
        columns: 2; /* Reduce columns for tablets */
        column-gap: 10px;
		margin-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        columns: 1; /* Single column for mobile screens */
        column-gap: 8px;
		margin-bottom: 100px;
    }
}

.fill{
    filter: blur(5px);
    opacity: 50%;

}

#clock{
    display: none;
}


.maintenance-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
    padding: 20px;
}

.maintenance-content {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.maintenance-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.maintenance-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.maintenance-content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .maintenance-content h1 {
        font-size: 2em;
    }

    .maintenance-content p {
        font-size: 1em;
    }
}