.container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: var(--bg);
}
.table-of-contents {
    margin: 2rem 0;
    line-height: 1.6;
    text-align: center;
    color: var(--bg-h1-colour);
}

.table-of-contents a {

    display: block;
    padding: 0.4rem 0;
    color: inherit;
    text-decoration: none;
}

.table-of-contents a:hover {
    text-decoration: underline;
}
html {
    scroll-behavior: smooth;
}
.section {
    transition: all 0.3s ease;
    padding: 0.5rem;
    position: relative;

}
h1{
    font-size: 1rem;
}
h2{
    font-size: 1rem;
}
.section.glow {
    box-shadow: 0 0 20px #00ffb3, 0 0 40px #00ffb3;
    background: #23232348;
    border-radius: 8px;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .container{
        margin-left: 15px;
         margin-right: 15px;
    }
}
