h1{
    font-size: 40px;
    color: #000;
    font-weight: bold;
    text-align: left;
    padding: 20px 20% 0px 20%;
    margin-bottom: 0;
}

h2{
    font-size: 30px;
    text-align: left;
    color: #1356A4;
    font-weight: bold;
    padding: 10px 0;
    margin: 0;
}

.section-hyperlink{
    cursor: pointer;
    text-decoration: underline;
}

picture img, picture source{
    display: block; /* Ensure the picture block behaves like an image */
    max-width: 80%; /* Prevent the image from overflowing its container */
    height: auto; /* Maintain the aspect ratio */
    margin: 10px auto 20px auto; /* Center the picture if necessary */
}

.section-description{
    font-size: 17px;
    color: #000;
    text-align: left;
    margin: 10px 0;
}

.section-container{
    padding: 20px 20%;
    text-align: center;
    background-size: cover;
}

.white-container{
    background: #fff;
}
.blue-container{
    background: #1356A4;
}
.links-container{
    display: flex;
    justify-content: center;
}
.offwhite-container{
    background: #f5f5f5;
}

.link-list{
    color: #fff;
    padding: 20px 0;
    text-align: left;
}
.list-element{
    padding: 2px 0;
    font-size: 17px;
    text-align: left;
}
.toc-element{
    cursor: pointer;
}
.toc-element:hover{
    text-decoration: underline;
}

@media (min-width: 2000px) {
    h1{
        padding: 20px 30% 0px 30%;
    }
    .section-container {
        padding: 20px 30%;
    }
}

@media (max-width: 900px) {
    h1 {
        padding: 0 6%;
    }
    .section-container {
        padding: 15px 6%;
    }
    .link-list{
        padding: 20px 26px;
    }
    .toc-element{
        padding: 5px 0;
    }
}