body{
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height:100vh;
    background-color: beige;
    font-family: 'Darker Grotesque', sans-serif;
    background-image: url(mechanic.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

nav{display: grid;
    justify-items: center;
    height: 50px;
    width: 100%;
    background:rgb(76, 82, 88);
    position: fixed;
    align-items: center;
    
 
}

nav ul{
    position: fixed;
    display: flex;
    align-items: center ;
    width: 85%;
    max-width: 1100px;
    list-style-type: none;
    margin-right: 2rem;
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 1.2rem;
}
nav ul li {
   margin-right: .3rem;
    color: snow;
    transition: .3s;
    font-size: .9rem;
    padding: 2px;
    transition: .2s;
}

nav ul li a:hover{
    padding: 8px;
   background-color: rgb(148, 29, 29);
    box-sizing: border-box;
    transition: .2s;
}

nav ul li a{
    transition: .2s;
    text-decoration: none;
    color: beige;
}

.active{
    padding: 8px;
    
   background-color: rgb(148, 29, 29);
}

.logo{
    flex: 1;
    margin-right: .5rem;
    font-size: 1.5rem;
    font-family: 'Monoton', cursive;
}

.block{
    height: 100%;
    display: grid;
    align-items: center;
}
.container{
    background-color:  beige;
    width: 80%;
    margin: 0 auto;
    height:auto;
    
    line-height: .85;
    font-size: 1.2rem;
    padding-bottom: 1rem;
}

.container h1{
    text-align: center;
    
}

.container h2{
    padding-left: 1rem;
}

.container p{
    padding-left: 1rem;
}

span{
    color:rgb(148, 29, 29)
}



.foot{
    height: 6.5rem;
    width:100%;
    background-color:rgb(36, 40, 44) ;
    text-align: center;
    width: 100%;
    padding-top: 20px;
    color:beige ;
}

@media (min-width:800px) {

    .block{
        display: grid;
        place-items: center;
    }
    .container{
        width: 50%;
    }
}





