html{
    box-sizing: border-box;
}

*,*::after,*::before{
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body{
    max-width: 80rem;
    height: 100vh;
    margin-right: auto;
    margin-left: auto;
    font-family: "Abol" , monospace;
    background: linear-gradient(225deg , #000000 , #000000cb);
}

.container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;


}
.title-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 10rem;
}
.title__wellcome{
    color: #fff;
    text-align: center;
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px #600e0e;
}
.title__description{
    color: #B71C1C;
    font-size: 1rem;
    text-shadow: 2px 2px 10px -1px #fff;
    text-align: center;
}
.item-container{
    width:50rem;
    margin-top:5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;

}
.item__1 , .item__2{
    width: 20rem;
    height: 15rem;
    border-radius: 2rem;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #212121;
    text-shadow: 2px 2px 10px #600e0e;
}

.item__name{
    text-align: center;
    font-size: 4rem;
    /* -webkit-text-stroke: 2px black; */
    color: #ffffff;
    text-shadow: 2px 2px 10px -2px black;
    
}
.item__1{

    background-image: linear-gradient(rgba(0, 0, 0, 0.558)) ,url("../imgs/main/fast-food.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
.item__2{

    background-image:  linear-gradient(rgba(0, 0, 0, 0.558)) ,url("../imgs/main/caffee.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.item__2,.item__1:hover{

    color: black;
    

}

@media (max-width: 807px) {

    .title-container{
        margin-top: 2rem;
    }

    .title__wellcome{
        font-size: 2.4rem;
    }

    .item-container{
        max-width: 30rem;
        flex-direction: column;
        margin-top: 3rem;
    }

    .item__1 , .item__2{
    width: 100%;
    height: 15rem;
    }

    .item__name{
    font-size: 3rem;
    }
    
}

@media (max-width: 500px){

    .title-container{
        margin-top: 3rem;
    }
    .title__wellcome{
        font-size: 1.5rem;
    }
    .title__description{
        font-size: 0.7rem;
    }

    .item-container{
        max-width: 23rem;
        gap: 1rem;
    }
    .item__1 , .item__2{
        width: 90%;
        height: 13rem;

    }
    .item__name{
        font-size: 2rem;
    }

}

@media (max-width: 370px){

    .title__wellcome{
        font-size: 1.3rem;
    }
    .title__description{
        font-size: 0.5rem;
    }

    .item-container{
        max-width: 18rem;
        gap: 1rem;
    }
    .item__1 , .item__2{
        width: 90%;
        height: 11rem;

    }
    .item__name{
        font-size: 1.5rem;
    }

}