html {
    height: 100%;
}

body {
    position: relative;
    margin: 0; 
    padding: 0;
    background-image: url('./backgroundBLACK.jpg');
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
}

.navbar {
    display: flex;
    margin-left: 2.5%;
    margin-right: 2.5%;
    padding-left: 2.5%;
    padding-right: 2.5%;
    justify-content: space-between;
    background-color: rgb(63, 81, 176);
    align-items: center;
    border-radius: 0 0 15px 15px;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    align-content: center;
    gap: 4%;
    width: 100%;
}

.navbar a {
    color: antiquewhite;
    display: block;
    text-decoration: none;
}
/* Specific content for ther side (Book Cover and Descriotion) */

.content {
    display: flex;
    margin: 0;
    padding: 0;
    height: calc(100vh - 5%); /* subtract navbar height */
    width: 100%;
}

.left-content {
    width: 50%;
    margin-top: 1%;
}

.left-content img {
    display: block;
    aspect-ratio: 89/125;
    width: 70%;
    margin-left: auto;
    margin-right: 5%;
    border-radius: 10px;
    border-style: solid;
    border-width: thin;
    border-color: antiquewhite;
}

.right-content {
    width: 50%;
    margin-top: 1%;
    margin-right: 2.5%;
    margin-bottom: 2.5%;
    padding-left: 2%;
    background-color: rgba(240, 248, 255, 0.336);
    border-style: solid;
    border-color: antiquewhite;
    border-radius: 10px;
    border-width: thin;
    overflow: scroll;
}

.kurzbeschreibung {
    width: 80%;
}