@font-face { font-family: "Digital"; src: url('../fonts/Adequate-ExtraLight.ttf'); }
@font-face { font-family: "Micro"; src: url('../fonts/MicroExtendFLF.ttf'); }
body {
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-position: top center;
	background-color:#FFF;
}

.content {
	display: absolute;
	width: 100%;
	top: 0;
	left: 0;
	display: table;
	vertical-align: middle;
	height: 100vh;
}

.content .inner {
	display:table-cell;
	vertical-align: middle;
	font-family: "Muli-Light";
}
.time, .date, .seconds {
	font-family: "Micro";
	color:#FFF;
}
.timeblock {
	margin: 0 auto;
	border: solid 1px rgba(255,255,255,0.5);
	line-height: 100px;
	border-radius: 300px;
	padding-top: 110px;
	width: 300px;
	height: 300px;
	box-shadow: inset 0 0 30px rgba(255,255,255,0.5);

}
#particles-js{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.maintenance-card {
    background: rgba(255, 255, 255, 0.92);
    border: 3px dashed #ff9eb5;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
    position: relative;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.maintenance-card:hover {
    transform: translateY(-5px);
}

.maintenance-card h1 {
    font-family: "Micro", sans-serif;
    color: #ff69b4;
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 2px;
}

.maintenance-card p {
    font-family: "Muli-Light", sans-serif;
    color: #ff8da1;
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.maintenance-icon {
    font-size: 80px;
    color: #ff9eb5;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.cute-decoration {
    color: #ffb7c5;
    font-size: 1.5em;
    margin: 0 10px;
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
	100% { transform: translateY(0px); }
}
