* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	height: 100%;
}

body {
	font-family: Arial, sans-serif;
	background-color: rgb(178, 233, 255);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	color: blue;
	text-align: center;
	padding: 10px;
	z-index: 1000;
	padding: 15px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
}

.icons-left,
.icons-right {
	display: flex;
	gap: 10px;
}

h1 {
	font-size: 24px;
	font-weight: bold;
}

/* Kacheln Layout */
.tile-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	padding: 20px;
	margin-top: 100px; /* Standard für große Bildschirme */
	width: 90%;
	max-width: 700px;
	padding-bottom: 100px; /* Abstand vom Footer */
}

/* Tablet (Portrait, Landscape) und kleinere Laptops */
@media (max-width: 1024px) {
	.tile-container {
		margin-top: 100px; /* Anpassung für mittelgroße Bildschirme */
	}
}
/* Kleine Tablets und große Smartphones im Querformat */
@media (max-width: 822px) {
	.tile-container {
		margin-top: 160px; /* Anpassung für Tablets oder kleine Bildschirme */
	}
}

/* Kleine Tablets und große Smartphones im Querformat */
@media (max-width: 768px) {
	.tile-container {
		margin-top: 50px; /* Anpassung für Tablets oder kleine Bildschirme */
	}
}

/* Smartphones (Portrait) */
@media (max-width: 480px) {
	.tile-container {
		margin-top: 40px; /* Anpassung für sehr kleine Bildschirme */
	}
}

/* Kachel */
.tile {
	background-color: #047beb70;
	border-radius: 10px;
	border: 2px solid #004b91;
	padding: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	text-align: center;
}

.tile:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tile-image {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	/*object-fit: cover;*/
}

.tile-text {
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	color: #047beb;
	text-decoration: none;

	font-size: 1em;
	line-height: 1em;
	color: white;
}

h2 {
	font-size: 24px;
	font-weight: bold;
	margin-top: 10px;
	color: #047beb;
}
