
#wrapper{
    display:grid;
    grid-auto-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(5, minmax(0, 175px)) minmax(0px, 1fr);
    
}
body{
    margin:0;
}
 li a{
    background-color:white;
    color:black;
    border-radius: 10px;
    padding:5px;
}
a{
    
    text-decoration:none;

}
#phone{
     grid-row:1/1;
    grid-column:-1/-2;
    position:sticky;
    top:0px;
    background-color:rgb(41,38,31);
    float:left;
    width:fit-content;
    height:fit-content;
    text-align: center;
}
#phone, a{
    color:white;
    padding:0px;
}
ul{
    color: black;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    list-style-type:none;
    justify-items:center;
    padding:0px;

}

li{

    text-decoration: none;
    display:inline;
    font-size:1.5rem;
}
nav{
    grid-row: 3/3;
    grid-column: 3/6;
    z-index: 1; 
    position:relative;
    top:-30px;

}
#orangebar{
    background-color:rgb(215,107,32);
    grid-column: 1/-1;
    grid-row:1/3;
    height: 100%;
    z-index: -1;
    box-shadow: 5px 10px 20px black;
}
#logo{
    background-image: url("images/Cartracks.png");
    background-repeat: no-repeat;
    background-position:left;
    background-size:contain;
    height: 250px;
    width:auto;
    grid-row:1/3;
    grid-column:1/3;
    position: absolute;
    top: 0px;
    left: 0px;
    right:0px;
}
#text{
    background-image: url("images/TextLogo.png");
    background-repeat: no-repeat;
    background-position:left;
    background-size:contain;
    height: 100px;
    width: auto;
    grid-row:2/2;
    grid-column:1/3;
    z-index: 1;
    position: absolute;
    top: 40px;
    left: 8px;
    right:0px;
}
#car{
    background-image: url("images/MattsCar.png");
    background-repeat: no-repeat;
    background-position:right;
    background-size:contain;
    height: 120px;
    width:auto;
    float:left;
    grid-row: 2/3;
    grid-column: 4/4;
    z-index: 1;
}

#homehero{
    background-position: center;
    background-size: cover;
    background-image: url("images/mechanic.jpg");
    background-repeat: no-repeat;
    height:400px;
    grid-row: 3/4;
    grid-column: 1 / -1;
    z-index: -2;
}
#herotext{
    grid-row: 3/4;
    grid-column: 5/6;
    width:200%;
    margin:auto;
    color:white;
    font-family: StencilStd;
}
#herotext h2{
    text-align:center;
    font-size:2rem;
}
h3 a{
    background-color:rgb(41,38,31);
    font-size: 2rem;
    padding: 5px;
    kerning:2px;
}
h2{
    font-size: 2rem;
}
main{
    grid-column: 2/-2;
}
#reviews{
    grid-column:2/-2;
    text-align: center;;
    grid-row:5/7;
}
#grey{
    background-color:rgb(212,212,210);
    grid-column:1/-1;
    grid-row:5/7;
    height:100%
}
@media only screen and (max-width: 1100px){
    #wrapper{
        grid-template-columns: minmax(0px, 1fr) repeat(5, minmax(0, 150px)) minmax(0px, 1fr);
    }
}

@media only screen and (max-width: 900px){
    #phone{
        display:none;
    }
    #logo{
        display:none;
    }
    
    #text{
        grid-row:1/2;
        grid-column:3/6;
        height:100px;
        width:auto;
        background-size:contain;
        width:auto;
        background-position:center;
        position:static;


    }
    nav{
        grid-row:3/3;
    }

}

@media only screen and (max-width: 600px){

}