*, 
*::after, 
*::before{
    box-sizing: border-box;
    
}

body{

    --section-background-color: rgb(0, 0, 0, .7);
    --body-font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    

    
}

.bg{
    position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        transform: scale(1.0); 
        background-image: none;
        &:after {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100%;
            background-image: url("./images/concrete_boss_background_4_Lightened_lowered.jpg");
            background-position: center 0%;
            background-size: cover;
            background-repeat: no-repeat;
        }
}

nav{
    position: relative;
    background-color: var(--section-background-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2%;
    z-index: 100;
}

nav > a{
    color: white;
    display: flex;
    height: 2em;
    font-size: 1.5em;
    border: 1px solid black;
    align-items: center;
    justify-items: center;
    padding: 15px;
    margin-top: 7px;
    margin-bottom: 7px;
}
.logo{
    position: absolute;
    height: 4em;
    left: 1em;
}

.yellow_Border{
    position: fixed;
    left: 2vw;
    top: 5vh;
    width: 96vw;
    height: 100vh;
    border: 1em solid yellow;
    content: "";
    
}
.title-wrapper{
    display: flex;
    width: 100%;
}

.title{
    width: max-content;
    font-size: 4rem;
    
    font-family: "Reddit Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    
    background-color: #666666;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: rgba(245,245,245,0.5) 3px 2px 1px;
    
}



.object-section{
    display: grid;
    margin-top: 100vh;
    max-width: 90vw;
    max-height: max-content;
    position: relative;
    background: var(--section-background-color);
    margin-left: 5%;
    margin-right: 5%;
    z-index: 5;

}
.object{
    max-height: 100%;
    padding: 15px;
    color: white;
    font-size: large;
    overflow: hidden;

    margin: 15px 50px;
    box-shadow: inset 0 0 20px rgb(251, 251, 251);
}
.object > p{
    font-family: var(--body-font);
    margin-left: 15px;
    text-indent: 15px;
    line-height: 1.6;
}
.object > h2{
    width: 100%;
    text-align: center;
    height: fit-content;
}
.gram-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max-content;
    

}
.instagram{
    max-width: 100%;
    max-height: 100%;
    margin-left: auto;
}

.contact-us{
    width: 90vw;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-top: 17vh;
    margin-bottom: 15vh;
    cursor: pointer;
    opacity: 95%;

}


.error{
    background-color: red;
    color: white;
}

@media (min-width: 701px) {
    .title-wrapper{

    }

    .object-section{
        
        grid-template-columns: repeat(3, 33%);
    }

    .title{
        text-wrap: nowrap;
    }
}
@media (max-aspect-ratio: 5/4) {
    .bg{
        
        position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    transform: scale(1.0); 
    &:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("./images/concrete_boss_background_4_Lightened_lowered.jpg");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    }
    .title-wrapper{
        flex-direction: column;
    }
    .finisher-img{
        /* width: 80vw;
        height: auto;
        
        margin: auto;
        opacity: 90%;
        margin-top: 3em; */
    }
    .title{
        margin: 4em auto ;

    }
    .object-section{
        grid-template-columns: 100%;;
    
    }
    
}
/* @media (min-height: 600px){
    body{
        background-image: url('./images/concrete_boss_background_4_Lightened_long_lifted_title.jpg');
        background-size: cover; 
    }
}


/* @media (max-width: 500px) {
    body{
        background-image: url('./images/Concrete_Boss_Background_4\ long\ \(1\).jpg');
        background-size: 100vw; 
    }
} */