/* Conteneur principal pour limiter le style au plugin */
.dasein-maintenance {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background: #111;
    color: black;
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
    text-align: left;
	font-size: 14px;
}

/* Images de fond / Slider */
.dasein-maintenance .dasein-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
}

.dasein-maintenance .dasein-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.dasein-maintenance .dasein-bg img.active {
    opacity: 1;
}

/* Contenu centré */
.dasein-maintenance .dasein-wrap {
    position: relative;
    z-index: 2;
    padding: 20px;
}

/* Card */
.dasein-maintenance .dasein-card {
    background: white;
    padding: 8px;
    border-radius: 0px;
    max-width: 90%;
    box-sizing: border-box;
}

/* Titres et textes */
.dasein-maintenance h1,
.dasein-maintenance h2,
.dasein-maintenance p,
.dasein-maintenance .custom-message,
.dasein-maintenance strong {
    font-family: Arial, sans-serif;
}

/* Liens */
.dasein-maintenance .links a {
    display: inline-block;
    color: black;
    text-decoration: none;
	border-bottom:1px solid black;

    transition:  0.3s;
}

.dasein-maintenance .links a:hover {
    color: red;

}

/* Message HTML */
.dasein-maintenance .custom-message {
    /*margin-top: 12px;
    text-align: center;*/
}

/* Responsive */
@media(max-width: 600px) {
    .dasein-maintenance .dasein-card {
        /*padding: 8px;*/
    }

    .dasein-maintenance .links a {
       /* padding: 6px 10px;
        font-size: 14px;*/
    }
}
