@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

html, body {
    margin: 0 auto;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: white;
    /*background-color: #F5F5F5;*/
}

.headerContainer {
    position: absolute;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;

}

    .headerImg {
        width: 100%;
        height: 60%;
        object-fit: cover;
        filter: grayscale(60%);
        opacity: 0.3;
    }

@media screen and (max-width: 992px) {
   .headerContainer,
   .headerImg {
       display: none;
   }
}
