* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
    color: black;
    background-color: rgba(0, 0, 0, 0.2);
    height: 100vh;
}

.page {
    height: 100%;
    padding: 15px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
}

/* Oben */
.top-left {
    grid-column: 1 / 2;
    grid-row: 1;
    text-align: left;
}

.top-right {
    grid-column: 2 / 3;
    grid-row: 1;
    text-align: right;
}

/* Mitte */
.center {
    grid-column: 1 / 3;
    grid-row: 2;

    display: flex;
    justify-content: center;
    align-items: center;
}
.center a {
    display: flex;
    justify-content: center;
    align-items: center;
}


.center img {
    max-width: 15%;
    height: auto;
}

/* Unten */
.bottom-left {
    grid-column: 1 / 2;
    grid-row: 3;
    text-align: left;
}

.bottom-right {
    grid-column: 2 / 3;
    grid-row: 3;
    text-align: right;
}

/* Link */
a {
    color: blue;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
