html {
    scroll-behavior: smooth
}

body {
    padding-bottom: 0 !important;
}

h2 {
    font-weight: bolder;
}

.white-container-title {
    margin-top: -0.2rem;
}

hr {
    border: 0;
    height: 1px;
    width: 50%;
    position: relative;
    margin: 30px auto;
}

li {
    list-style: disc !important;
    color: black;
}

a {
    color: gold;
    font-weight: bolder;
}

a:hover {
    color: lavender
}

.purple-link {
    color: #4a148c;
}

.purple-link:hover {
    color: peru;
}

.title-container {
    min-height: 100vh;
    max-height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    margin-bottom: 5vh;
}

.bg-container {
    min-width: 100vw;
    max-width: 100vw;
    margin-bottom: 5rem;
}

.formation-container {
    margin-top: 2.5rem;
}

.details-row {
    padding-left: 6rem;
}

.nav-wrapper {
    position:fixed;
    z-index: 1;
    top: 0;
    left:0;
    overflow-x: hidden;
    padding-top: 20px;
    margin-top: 42px;
}

.table-of-contents {
    font-size: larger;
    
}
.table-of-contents a {
    color:sandybrown !important;
    font-weight: bolder;

}
.table-of-contents a:hover {
    color: white !important
}

.separator {
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.center-ball {
    background: gold;
}

.center-ball:before {
    content: "";
    width: 6px;
    height: 6px;
    background: gold;
    display: inline-block;
    border: 2px solid gold;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 50%;
    margin: 0 0 0 -3px;
}

.center-ball-purple {
    background: #4a148c;
}

.center-ball-purple:before {
    content: "";
    width: 6px;
    height: 6px;
    background: #4a148c;
    display: inline-block;
    border: 2px solid #4a148c;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: 50%;
    margin: 0 0 0 -3px;
}

.space {
    height: 10vh;
}

/*Animations*/
.title {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation-name: appear;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

@keyframes appear {
    from {
        visibility: hidden;
        opacity: 0;
    }
    to {
        visibility: visible;
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .icon-filled-animation {
        animation-name: fill-icon;
        animation-duration: 1s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes fill-icon {
        from {
            color: white;
        }
        to {
            color: gold
        }
    }

    .spin-img-animation {
        animation-name: spin-img;
        animation-duration: 1s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes spin-img {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .nav-appears-animation {
        animation-name: nav-appears;
        animation-duration: 1s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }
    @keyframes nav-appears {
        from {
            visibility: hidden;
        }
        to {
            visibility: visible;
        }
    }

    .nav-disappears-animation {
        animation-name: nav-appears;
        animation-duration: 1s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }
    @keyframes nav-appears {
        from {
            visibility: visible;
        }
        to {
            visibility: hidden;
        }
    }
}

/*Mobile rules*/
@media screen and (max-width: 767px) {
    .details-row {
        padding-left: 0;
    }
}