body{
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    background-color: rgb(194,39,45); 
    min-width: 1200px;
}

header{
    display: flex;
    justify-content: space-between;
    padding: 50px 100px;
    font-size: 22px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: rgb(194,39,45);  
    border-bottom: 1px solid #fff;
     
}
header > div > a{
    text-decoration: none;
    color: black;
}
header > div > img{
    margin: -35px;
}
header > div > a:hover{
    color: rgb(255, 255, 255);
    padding-bottom: 25px;
    border-bottom: 1.2px solid rgb(255, 255, 255);  
}

h1{
    text-align: center;
    font-size: 64px;
}

.menu_title{
    font-size: 35px;
    font-weight: bold;
    color: white;
    line-height: 40px;
    padding-left: 2%;
    margin: 0px 0px 0px 30px;
}
.burgers{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
    text-align: center;
    width: 50%;
}

.burger_img{
    max-width: 664px;
    
}

.burger_h3{
    font-size: 30px;
    margin: -10px auto;
}
.burger_h2{
    font-size: 100px;
    color: white;
    margin: 8%;
}
.burger_text{
    text-align: center;
    padding: 0 5% 0 5%;
    font-size: 18px;
}


footer{
    margin-top: 30px;
    padding:  30px 0px 130px 0px;
    background-color: rgb(0, 0, 0); 
    text-align: center;
    color: white;
    font-size: 18px;
}


.conteiner{
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px 15px;
}

@media (max-width:1200px){
    .container{
        max-width: 970px;
    }
 }
 @media (max-width:992px){
     .container{
         max-width: 750px;
     }
     header{
        font-size: 35px;
        line-height: 1.5;
    }
     .burgers{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin:  0 auto;
    }

    .menu_title{
        margin: 0px 0px 0px 230px;
    }
    footer{
        font-size: 32px;
    }
    .burger_text{
        font-size: 32px;
        line-height: 1.5;
    }
    .burger_h3{
        font-size: 45px;
        
    }
    .burger_h2{
        font-size: 100px;
    }
  }
  @media (max-width:767px){
     .container{
         max-width: none;
     }
     header{
        display: flex;
        flex-direction: column;
        padding: 0 45%;
        font-size: 36px;
        line-height: 1.5;
    }
    header > div > img{
        margin: 0px 0px 0px 0px ;
        
    }
    .burger_text{
        font-size: 38px;
        line-height: 1.5;
    }
    .burger_h3{
        font-size: 55px;
        
    }
    .burger_h2{
        font-size: 120px;
    }
    footer{
        font-size: 45px;
    }
  }

