#main {
    position: relative;
}

#main div {
    width: 100%;
    margin-bottom: 2em;
}

#main div img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    height: 200px;
    background-color: #000;
    opacity: 0.5;
    width: 96.3% !important;
    visibility: hidden;
}

h1 {
    color: white;
    text-align: center;
    padding-top: 80px;
    font-size: 100px;
}

@media (max-width: 992px) {
    .overlay {
        visibility: visible;
        width: 95.4% !important;
    }
    
    h1 {
        font-size: 70px
    }
}
