.project-info {
    background-color: #ffffff;
    padding-bottom: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-container {
    max-width: 70vw;
}

.section-heading {
    font-size: 3em;
    color: #062023;
    font-weight: 600;
    margin-top: 5vh;
    margin-bottom: 5vh;
    text-align: center;
}

.section-subheading {
    font-size: 2.5em;
    color: #062023;
    font-weight: 600;
    margin-top: 3vh;
    margin-bottom: 3vh;
    text-align: center;
}

.section-list {
    font-size: 1.5rem;
    color: #062023;
}

.section-text {
    font-size: 1.5rem;
    color: #062023;
    font-weight: 500;
    margin-top: 3vh;
    margin-bottom: 3vh;
    text-align: justify;
}

.section-images {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.float-image {
    max-width: 40vw;
}

.float-image > img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    box-shadow: 0px 0px 5px 0px #000000;
}

.float-iframe {
    width: 80%;
}

.float-iframe > iframe {
    width: 100%;
    height: 50vh;
    box-shadow: 0px 0px 5px 0px #000000;
}

with-border {
    border: 1px solid #062023;
}

.image-caption-top {
    color: #062023;
    font-weight: bold;
    margin-top: 3vh;
    margin-bottom: 1vh;
    text-align: center;
}

.smaller-image {
    max-width: 30vw;
}

@media screen and (max-width: 1200px) {
    .section-container {
        max-width: 80vw;
    }
    .section-heading {
        font-size: 2.5em;
    }
    .section-subheading {
        font-size: 2em;
    }
    .section-text, .section-list {
        font-size: 1.2rem;
    }
}

@media (max-width: 900px) {
    .section-heading {
        font-size: 2em;
    }
    .section-subheading {
        font-size: 1.5em;
    }
    .section-text, .section-list {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 650px) {
    .section-container {
        max-width: 90vw;
    }
    .section-heading {
        font-size: 2em;
    }
    .section-subheading {
        font-size: 1.5em;
    }
    .section-text, .section-list {
        font-size: 1.1rem;
    }
    .section-images {
        flex-direction: column;
    }
    .float-image {
        max-width: 70vw;
    }
    .smaller-image {
        max-width: 60vw;
    }
}
@media (max-width: 576px) {
    .section-heading {
        font-size: 1.5em;
    }
    .section-subheading {
        font-size: 1.2em;
    }
    .section-text, .section-list {
        font-size: 1rem;
    }
}