html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
	display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    overflow: hidden;
	
}

body, h1, h2, h3, h4, h5, h6, p, a {
    font-family: Arial, sans-serif;
}
.dasein-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
}
.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 2s ease-in-out;
}
.dasein-bg img.active {
    opacity: 1;
}
.dasein-wrap {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    text-align: center;
}
.dasein-card {
	text-align: left;
	background-color: white;
	padding: 24px;
	/*
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
	*/
}
h1 {
    margin: 0 0 8px;
    font-size: 28px;
}
p.lead {
    margin: 0 0 16px;
}
.links {
 	/*   display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;*/
}
.links a {
 	/*   color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    padding: 8px 12px;
    border-radius: 8px;*/
}
