@charset "UTF-8";

.wrapper {
    min-height: 100vh;         /* immer volle Höhe */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-body {
    flex: 1;           
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    padding: 2rem;
    font-size: 1em;
}

/* .container {
	margin-top: auto;
	margin-bottom: auto;
} */

i.fa-large {
	font-size: 15em;
}

.content-body i.fa-large {
    font-size: clamp(3rem, 8vw, 10rem);
}

    .content-body h1 {
        font-size: 6rem;
    /* 	color: var(--color-bg-secondary); */
    }
    
    .content-body h2 {
        font-size: 3rem;
    }

    .content-body i.fa-large {
        font-size: 15em;
    }

.backdrawing {
    height: clamp(120px, 20vh, 300px);     /* min 120px, dynamisch bis 20% Höhe, max 300px */
    width: 100%;
    border-bottom-left-radius: 75% 50%;
    border-bottom-right-radius: 75% 50%;
    background-color: #1a266d;
    margin: auto;
}

.drawing {
    height: clamp(120px, 20vh, 300px);     /* min 100px, dynamisch bis 18% Höhe, max 250px */
    width: 100%;
    border-bottom-left-radius: 80% 50%;
    border-bottom-right-radius: 80% 50%;
    background-color: #3b4895;
    color: white;
    display: flex;                         /* Uhr immer mittig */
    align-items: center;
    justify-content: center;
}


.backdrawing,
.drawing {
//    height: 25vh;  /* beide nehmen zusammen ~25% der Höhe */
 //   min-height: 150px; /* verhindert dass sie auf zu kleinen Screens verschwinden */
}


.drawing i.fa-large {
    position: relative;
	font-size: clamp(3rem, 18vh, 12rem);   /* Uhr-Icon skaliert mit Höhe */
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

i.icon-color {
	color: #3b4895;
}


.btn.btn-custom {
	padding: 8px 50px;
	border-radius: 30px;
	cursor: pointer;
	font-size: 1em;
	letter-spacing: 2px;
	font-weight: bold;
	margin: 5px 0px;
	background-color: var(--color-bg-primary);
}

.btn.btn-custom {
	border: 4px solid var(--color-bg-secondary);
  	color: var(--color-text-light);
}

.btn.btn-custom:hover {
	background-color: var(--color-bg-secondary);
  	color: var(--color-text-light);
}

.footer {
    height: 50px;
	position: fixed;
	bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f2f2f2;
    text-align: center;
}

.footer-copyright {
    position: absolute;
    bottom: 5px;
    right: 20px;
    font-size: x-small;
    opacity: 0.5;
    letter-spacing: 0.025em;
}

img.logo {
    height: 50px;
}

@media screen and (max-width: 1280px) {

    .content-body h1 {
        font-size: 6rem;
    /* 	color: var(--color-bg-secondary); */
    }
    
    .content-body h2 {
        font-size: 3rem;
    }

    .content-body i.fa-large {
        font-size: 15em;
    }
}

@media screen and (max-width: 1040px) {

    .content-body h1 {
        font-size: 4rem;
    /* 	color: var(--color-bg-secondary); */
    }
    
    .content-body h2 {
        font-size: 3rem;
    }

    .content-body i.fa-large {
        font-size: 10em;
    }
}


@media screen and (max-width: 768px) {

    .content-body h1 {
        font-size: 3.5rem;
    /* 	color: var(--color-bg-secondary); */
    }
    
    .content-body h2 {
        font-size: 3rem;
    }

    .content-body i.fa-large {
        font-size: 10em;
    }
}

@media screen and (max-height: 800px) {
    img.logo { height: 40px; }
    .content-body h1 { font-size: 4rem; }
    .content-body h2 { font-size: 2rem; }
    .content-body i.fa-large { font-size: 8em; }
}

@media screen and (max-height: 600px) {
    img.logo { height: 30px; }
    .content-body h1 { font-size: 3rem; }
    .content-body h2 { font-size: 1.5rem; }
    .content-body i.fa-large { font-size: 6em; }
}