
body{
    margin: 0;
}


.logo{
    display: flex;
    justify-content: center;
}

.btns{
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-image: url(../Images/BBQ\ Shawarma.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 88px;
    position: relative;
}

.btns .overlay{
    position: absolute;
    left: 0;
    top: 0;
    background-color: #aa040f18;
    content: "";
    width: 100%;
    height:100%
}

.btns a{
    text-decoration: none;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    width: 300px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    margin: 10px auto;
    font-size: 22px;
    font-weight: bold;
    border: 2px solid #fff;
    background-color: green;
    color: #fff;
    border-radius: 50px;
    outline: none;
    transition: ease .5s;
    z-index: 111;
}

.btns a:hover{
    width: 350px;
    background-color: #F1C32F;
    border: 2px solid #AA0410;
    color: #AA0410;
}

.btns i{
    margin-left: 15px;
    font-size: 28px;
}

@media (max-width:600px) {
    .logo img{
        width: 200px;
    }
    .btns{
        padding: 130px;
    }
    .btns a{
        width: 250px;
        font-size: 20px;
    }
    .btns a:hover{
        width: 300px;
    }
}

@media (max-width:480px) {
    .btns{
        padding: 630px 50px;
    }
    .btns a{
        width: 250px;
    }
    .btns a:hover{
        width: 270px;
    }
}