background-img is a div which wraps all of the other classes.
I have tried using the ::before method but cannot get it to work either. If there are any other improvements I can make please let me know. thanks in advance
.background-img {
    height: 100vh;
    width: 100vw;
    opacity: 0.1;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    background: url(./assets/breakfast.png) no-repeat center center;
    background-size: cover;
}
.header-img-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.logo1 {
    height: 10vh;
    width: auto;
    margin: 1.5rem;
}
.logo2 {
    height: 10vh;
    width: auto;
    margin: 1.5rem;
}
.paragraph-img-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 5rem;
}
.main-paragraph {
    font-size: 2rem;
}
.loading-container {
    display: flex;
    justify-content: center;
}
 
    