/* Vars */

root {
    --primary-red: #ff0000;
    --background-light: #DFECDE;
}

/* Resets */
a {
    text-decoration: none;
    color: black;
}
body {
    margin: 0;
    background-color: white;
    position: relative;
}

html,
body {
    height: 100%;
}

/* Main content */

hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    /* Lichte grijstint voor een subtiele lijn */
    opacity: 0.5;
    /* Subtiele doorzichtigheid voor een verfijnd effect */
    box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.1);
    /* Lichte schaduw onder de lijn voor diepte */
}

/* Subtiele hover-effecten voor extra interactie (optioneel) */
hr:hover {
    background-color: #b0b0b0;
    /* Verander de kleur bij hover voor een interactieve ervaring */
    opacity: 0.7;
    /* Verhoog de doorzichtigheid bij hover */
}

h1 {
    margin-top: 2rem;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

main {
    position: relative;
    z-index: 1;
    width: 50vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    min-height: 80%;
    padding-left: 20px;
    line-height: 1.3rem;
    letter-spacing: 0.03rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

main p {
    margin-top: 0.5rem;
}

section {
    margin-top: 1rem;
    padding: 1rem;
    min-height: 10rem;
}

#intro {
    padding: 1rem;
}

#intro h2 {
    margin-top: 3rem;
}

#about-book .content {
    display: flex;
}

#about-book img {
    height: 18rem;
    border-radius: 0.1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: auto;
    margin-bottom: auto;
}

.column {
    margin-right: 1rem;
}

.imgContainer{
    display:flex;
}

#start {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#start a {
    width: 7rem;
    margin-top: 1rem;
    display: inline-block;
    border-radius: 25px;
    border: 1px solid black;
    padding: 8px 22px;
    text-decoration: none;
    font-weight: 500;
}

#start a:hover {
    background-color: black;
    color: white;
}

#kantl {
    display: flex;
    margin-bottom: 4rem;
}

#kantl img {
    width: 150px;
}

#footerShape svg {
    position: absolute;
    left: 0;
    transform: translateY(-58%);
    z-index: -1;
    width: auto;
    height: 12rem;
}