.subHero {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 2px solid #C6C6C6;
}

.container {
    text-align: center;
    width: 39%;
}

.right {
    width: 50%;
}

.imgTextSection img {
    height: 23rem;
}

.hero {
    margin-bottom: 0;
}

.chapters {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    padding: 2rem;
    margin-top: 5rem;
}

main .links {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

main .links a {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    border-left: solid 2px #0A1A2F;
    padding-left: 1rem;
    margin-left: 0.7rem;
}

h5 {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: bold
}

h4 {
    margin-bottom: 3rem;
}

/* Animated underline */

.link2 {
    position: relative;
    text-decoration: none;
    color: black;
    width: fit-content
}

.link2::before {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: currentColor;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

/* Hover animation */
.link2:hover::before {
    transform: scaleX(1);
}
