* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans Unicode';
    background-image: url('logo.jpg');
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.book-container {
    width: 90%;
    max-width: 900px;
    min-height: 600px;
    background-image: url('buch.jpg');
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
	border-bottom-style: dashed;
}

.book-header {
    text-align: center;
	margin-right: 20px;
	margin-left: 70px;
}

.book-body {
    flex-grow: 1;
}

.chapter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
	margin-left: 50px;
	margin-right: 20px;
}

.chapter-header h2 {
    font-size: 1.5em;
    font-weight: bold;
	margin: 20px;
}

.chapter-content {
    font-size: 1.2em;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-bottom: 20px;
	margin: 20px;
	margin-left: 70px;
}

.navigation {
    display: flex;
    justify-content: space-between;
	margin: 10px;
	margin-right: 20px;
}
a:link {
	color: #2b4f2a;
}
button {
    background-color: #2b4f2a;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

div#homepage {
    background-color: #45a049;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
	width: 350px;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s;
	align-self: center;
}

div#homepage a:link {
	color: white;
}

div#cc {
	align-self: center;
}