* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
  
body, html {
    margin: 0;
    padding: 0;
}

nav div ul.navbar-nav li a.nav-link{
    color:#151515;
}

.img-container {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #FCFCFC;
    background: rgba(0, 0, 0, 0.3); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content {
    padding: 0 3.7vw;
    margin-top: 11.94vh;
    display: flex;
    column-gap: 1vw;
    font-size: 1.5rem;
    font-style: normal;
    text-align: justify;
}

.content img {
    max-height: 70vh;
    width: 29.42vw;
}

.content div p:last-child {
    white-space: pre-line;
}

@media screen and (max-width: 768px) {
    .content {
        margin-top: 5vh;
        flex-direction: column-reverse;
        align-items: center;
        font-size: 1rem;
    }

    .content img {
        width: 70%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .content {
        margin-top: 5vh;
        flex-direction: column-reverse;
        align-items: center;
        font-size: 1.5rem;
    }

    .content img {
        width: 70%;
    }
}