body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: hsl(204, 60%, 90%);
    color: #2c3e50;
}

.header {
    background: linear-gradient(to left, #2c3e50, #bad5f0);
    color: white;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation a {
    display: inline-block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.navigation a:hover {
    background-color: #bad5f0;
    color: #2c3e50;
}

.hero h1 {
    margin: auto;
    width: calc(100% - 40px);
    text-align: center;
    color: #2c3e50;
    padding: 20px 0;
}

.tile-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: stretch;
    padding: 20px;
}

.tile {
    background: #ffffff;
    color: #2c3e50;
    padding: 20px;
    margin: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-basis: calc(33.333% - 20px);
    min-height: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.imprint {
	height: 300px;
	text-align: left !important;
}

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

.tile i {
    font-size: 3em;
    margin-bottom: 10px;
    transition: color 0.3s, transform 0.3s;
}

.tile:hover i {
    color: #bad5f0;
    transform: scale(1.1);
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

.logo
{
	height: 60px; padding-left: 24px
}

@media (max-width: 768px) {
    .tile {
        flex-basis: 100%;
        margin: 5px 0;
    }

    .navigation a {
        padding: 14px 10px;
    }
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    /* Other body styles... */
}

.main-content {
    flex: 1;
}

.footer {
    width: 100%;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative; /* or 'absolute' if you want it always at the bottom */
    bottom: 0;
}