/* Centered text */
.centered {
    position: absolute;
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
    font-family: "Nunito Sans",-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    line-height: 1.2;
    color: white;
    font-size: 55px;
    z-index: 1;
}

#img-container {
    height: 90vh;
    position: relative;
    text-align: center;
    color: white;
}

#img-container:after {
    content: '\A';
    position: absolute;
    width: 100%; height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.6);
    opacity: 0.5;
    transition: all 1s;
    -webkit-transition: all 1s;
}

.content-heading {
    color: #02377f;
    font-size: 30px !important;
    font-weight: 500 !important;
}