@font-face {
    font-family: ChristmasWish-monoline;
    src: url("ChristmasWish-monoline.otf") format("opentype");
}

html, body
{
	margin: 0;
}

#backgroundWrapper
{
	margin: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background: url("background.jpg");
	background-size: cover;
	background-position: center;
	overflow: scroll;
	scroll-behavior: smooth;
}

#page1
{
	width: 100%;
	height: 100vh;
	display: block;
}

#page2
{
	width: 100%;
	height: 100vh;
	display: block;
}

#page3
{
	width: 100%;
	height: 100vh;
	display: block;
}

h1
{
	font-family: ChristmasWish-monoline;
	color: white;
	font-weight: 400;
	font-size: 4em;
	text-align: center;
}

h3
{
    font-family: Roboto;
    color: white;
    padding: 1em;
}

p
{
	padding-left: 1em;
	color: white;
	font-family: Roboto;
	font-size: 14pt;
}

#result
{
    display: flex; /* Kinder in einer horizontalen Reihe */
    justify-content: space-between; /* Optional: Platz zwischen den Kindern */
    width: 100%; /* Container-Breite */
    max-width: 1200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow-x: auto; /* Scrollen, falls zu viele Kinder vorhanden sind */
}

#result div
{
    flex: 1; /* Alle Kinder gleich groß */
    max-width: 200px; /* Optionale Begrenzung der Breite */
    margin: 0 5px; /* Optional: Abstand zwischen den Kindern */
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: #ffa700;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 4px;
    transition: transform 0.2s ease, background 0.2s ease;
    white-space: nowrap; /* Verhindert Umbruch innerhalb der Kinder */
    font-family: Roboto;
}

.letterActive
{
	background: #ffa700 !important;
}

#currentQuestion
{
    padding-bottom: 1em;
    padding-left: 1em;
	color: white;
	font-family: Roboto;
	font-size: 14pt;
}

#answer
{
    margin-top: 5vh;
    width: 805;
    margin-left: 10vw;
    height: 2em;
    width: 80vw;
}