/* Font import is handled in HTML or here */
body {
    font-family: 'Press Start 2P', cursive;
    padding-bottom: 50px;
    /* Space for scroll */
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
}

.grid h1 {
    grid-column: 1 / 5;
    grid-row: 1;
    text-align: center;
    margin-bottom: 2rem;
}

.grid .content {
    grid-column: 1 / 5;
    grid-row: 2;
}

.grid .agency {
    grid-column: 1 / 3;
    grid-row: 4;
}

/* Additional specific overrides for Impressum readability */
.impressum-section {
    margin-bottom: 2rem;
    grid-column: 1 / 5;
}

a {
    word-break: break-all;
}

body>div {
    min-height: 100vh;
}