* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Georgia", serif;
    background: #f4efe8;
}

.page {
    max-width: 1100px;
    margin: auto;
    padding: 40px;

    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 30px;
}

/* Nadpis */
.title {
    grid-column: 2 / 3;
    text-align: center;
    font-size: 64px;
    font-weight: normal;
    letter-spacing: 2px;
    margin: 0;
}

/* Horní ilustrace knih */
.books-top {
    grid-column: 1 / 2;
    align-self: start;
}

.books-top img {
    max-width: 100%;
}

/* Horní koala */
.koala-top {
    grid-column: 3 / 4;
    align-self: start;
}

.koala-top img {
    max-width: 100%;
}

/* Text */
.text {
    grid-column: 2 / 3;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
}

/* Spodní knihovna */
.bookshelf {
    grid-column: 1 / 2;
    align-self: end;
}

.bookshelf img {
    max-width: 100%;
}

/* Spodní hromada knih */
.books-bottom {
    grid-column: 3 / 4;
    align-self: end;
}

.books-bottom img {
    max-width: 100%;
}
