.small-image {
    position: absolute;
    top: 25px; /* Abstand vom oberen Rand */
    left: 25px; /* Abstand vom rechten Rand */
    width: 150px; /* Breite des Bildes */
    height: 150px; /* Höhe des Bildes */
    background-image: url('logo.png'); /* Pfad zum Bild */
    background-size: contain; /* Bild soll vollständig sichtbar sein */
    background-repeat: no-repeat; /* Kein Wiederholen */
}


body {
	overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 80%;
    max-width: 800px;
}

.tile {
	background-color: #AF4451;
    padding: 20px;
    color: white;
    font-size: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.tile:hover {
    background-color: #933843;
}

a {
    text-decoration: none;
    color: white; /* oder eine gewünschte Farbe */
}

a:hover {
    text-decoration: underline;
}


/* Responsives Verhalten */
@media (min-width: 600px) {
    .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

footer {
    padding: 10px;
    background-color: #AF4451;
    color: white;
    width: 100%;
    position: absolute;
    bottom: 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
