* {
    margin: 0;
    padding: 0;
}

body {
margin:0;
font-family: Inter;
font-size:17px;
color: black;
line-height: 1.6;
}

#showcase {
    background-image: url(../assets/landing-page-image.jpg);
    background-size:cover;
    background-position:center;
    height:100vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
   
}

#showcase h1{
    font-size: 60px;
    line-height: 1.2;
    color: white;
}

#showcase p{
    font-size: 20px;
    color: white;
}

#pantry{
    padding: 200px 80px 0px 80px;
    font-size: 48px;
    background-color: #EDE9DA;
    height:100vh;
    display: flex;
}

.title{
    display: inline-block; 
    position: relative; 
    padding: 0;
}

#underline{
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%;
}

.box-1{
    justify-content: left;
    align-items: left;
    flex-wrap: wrap;
    padding-left: 20px;
}

.box-2{
    justify-content: right;
    flex-wrap: wrap;
}

#app {
    background-color: #FFF;
    height:60vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

@media screen and (max-width: 768px) {
    #showcase h1 {
        font-size: 40px;
    }

    #showcase p {
        font-size: 18px;
    }

    #pantry, #app {
        font-size: 30px;
        height: auto;
        padding: 100px 20px;
    }

    #pantry {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
    }

    #image-1 {
     max-width: 100%;
    }

    #app {
        gap: 30px;
    }

    #app .box-3, #app .box-4 {
        padding: 0;
        text-align: center;
    }

    #appStore-logo {
        width: 250px;
        height: auto;
    }
}