/* Fonts */

/* @import url('https://fonts.googleapis.com/css?family=Open+Sans:300&display=swap'); */
/* @import url('https://fonts.googleapis.com/css?family=Reenie+Beanie&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Macondo&display=swap'); */



@font-face {
	font-family: 'Macondo';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(./fonts/Macondo/RrQQboN9-iB1IXmOe2LE0Q.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

/* Basic */

body {
	background-color: #ebeae9;
	margin: 0;
}

html {
	font-family: 'Open Sans', sans-serif;
}

.btn {
	border-radius: 0;
}

a:link,
a:hover,
a:visited {
	text-decoration: none;
	color: #000;
}

a:link .white,
a:hover .white,
a:visited .white {
	text-decoration: none;
	color: #fff;
}

.bold {
	font-weight: bold;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	line-height: 110%;
	font-size: 2.2rem;
	text-transform: uppercase;
	font-weight: 700;
}

.min-100 {
	min-height: 100%;
}

.cursive {
	font-family: 'Reenie Beanie', cursive;
	font-weight: bold;
	font-size: 1.5rem;
}


/* Spacing */

.no-gutter {
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
}


/* Entry */

.entry {
    position: relative;
    
     
    margin: 0;
    padding: 0;
    background-color: #ebeae9;
    height: 90vh;
    width:  100vw;
    

}

.entry-h1 {
    justify-content: center; /* Horizontale Zentrierung */
    font-size: 3.5rem;
    font-weight: bold;
    text-align: center;
    padding-top: 10vh;
	padding-left: 1rem;
	padding-right:  1rem;

	font-family: "Macondo", cursive;
	font-weight: 400;
	font-style: normal;
    
}

.entry-text-container {
    display: flex;
	/* flex-flow: column; */
    
    justify-content: center; /* Horizontale Zentrierung */
}

.entry-text {
    

    /* width: 50vw; */
    font-size: 1.5rem;
    font-weight: bold;
    text-align: justify;
    padding-top: 10vh;
    max-width: 70%;

}

/* Media Query für kleinere Bildschirme (z.B. Smartphones) */
@media (max-width: 768px) {
.entry-text {

	font-size: 1.0rem;
    font-weight: bold;
    text-align: justify;
    padding-top: 10vh;
    
}
}