html{
    height: 100vh;
}
body {
font-family: "Montserrat", sans-serif;
min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #000000;  
}
.header{
    background-color: #000000;
    top: 0;
    height: auto;
    min-height: 10vh;
    max-width: 100vw;
    display: flex;
    align-items: center;
    box-shadow: #000000 0px 0px 10px 0px;
    padding-left: 1rem;
    padding-right: 1rem;
}
.nav{
    display: flex;
    list-style: none;
    margin-left: auto;
}   
.header h1{
    margin: 0.5rem;
    font-size: 2rem;
    color: #9fc3f1;
    font-family: "Montserrat", sans-serif;
}
.header a{
    text-decoration: none;
    color: #ffffff;
    margin: 0.5rem;
    font-size: 1.5rem;
}

.hero{
    background-color: #000000;
    width : 100%;
    height:100vh;
    display: flex;
} 

.back{
    height: auto;
    width: 100%;
    background-image: url("images/bluemencomp.png");
background-size: cover;
    background-position: center;
    background-repeat:no-repeat;
    align-items: center;
    justify-content: center;
}
.back .textbox{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
.back h2{
    text-align: center;
    font-size: 3rem;
    color: #ffffff;
    margin: 0.8rem;
}
.back .desc{
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    margin: 0.8rem;
}
.grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 40rem;
    margin:auto;
    width: 80%;
    
}
.box{
    background-color: #000000;
    margin: 1rem;
    border: 2px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box p{
    font-size: 1.5rem;
    color: #ffffff;
}
.products{
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bg-wrap{

    background-image: url("filterpowder.png");
    background-size: 200px 200px;
    background-position: center;
    background-repeat: repeat;
    flex-grow: 1;
}
.bg-content{
    position: relative
}
.overlay{
    background-image: url("filterpowder.png");
    position: absolute;
    opacity: 0.2;
    width: 100%;
    height: 100%;
    background-size: 200px 200px;
    background-position: center;
    background-repeat: repeat;
}
.products h2{
    text-align: center;
    font-size: 3rem;
    color: #CAF0F8;
    margin: 2rem;
}
.text{
    font-size: 1.2rem;
    color: #CAF0F8;
    margin: 2rem;
}

#main{
    display: flex;
    flex-direction: column;
    height: 100%;
    
}
#box1{
    background-size: cover;
    background-position: center;
    background-repeat:no-repeat;
}
#box2{
    background-image: url("wtf.PNG");
    background-size: cover;
    background-position: center;
    background-repeat:no-repeat;
}
#box3{
    background-image: url("momosas.png");
    background-size: cover;
    background-position: center;
    background-repeat:no-repeat;
}
#box4{
    background-image: url("b9c.jpg");
    background-size: cover;
    background-position: center;
    background-repeat:no-repeat;
}

.footer{
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
    color: #ffffff;
    bottom: 0;
}
.about{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin-top: 6rem;
    margin-bottom: 6rem;
    margin-left: auto;
    margin-right: auto;
}

.about h1{
    text-align: center;
    font-size: 3rem;
    color: #fafeff;
    margin: 2rem;
}
.about p{
    font-size: 1.5rem;
    color: #fafeff;
    margin: 2rem;
}
h2{
    color: #fafeff;
}
.about-page{
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .header{
        font-size: 12px;
    }
        .header h1{
        font-size: 1.5rem;
    }
        .header a{
        text-decoration: none;
        color: #ffffff;
        margin: 0.5rem;
        font-size: 1rem;
    }
    .back h2{
        font-size: 2rem;
    }
}