* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#home {
    position: relative;
}

#Sub-Section {
    color: rgb(255, 255, 255);
    background-color: rgba(205, 120, 118, 0.75);
    width: 44%;
    padding: 40px;
    font-family: sans-serif;
    position: absolute;
    top: 27%;
    left: 6%;
    z-index: 40;
}

#Sub-Section h1 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    letter-spacing: 2.5px;
}

#order-section>h1 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    letter-spacing: 6px;
}

#Sub-Section p {
    line-height: 25px;
    width: 82%;
    margin-top: 2%;
    letter-spacing: 1px;
    font-size: 17px;
}

#home_image {
    height: 690px;
    overflow: hidden;
    object-fit: contain;
}

#image1 {
    width: 100%;
    height: 100%;
}

#div {
    height: 110px;
    background: linear-gradient(to right, rgb(255, 104, 194), rgb(255, 218, 92));
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#order-section {
    text-align: center;
    background-color: rgb(188, 87, 104);
    font-family: sans-serif;
    margin-top: 1.1%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: linear-gradient(to right, rgb(255, 104, 194), rgb(255, 218, 92));
}

#Section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    margin: auto;
    margin-top: 5%;
    letter-spacing: 1px;
}

#Section>div {
    width: 270px;
    height: 350px;
    margin: auto;
    background-color: white;
    border-radius: 0 50px;
}

#Section>div>div {
    height: 60%;
    margin: 18px;
    border-radius: 0 50px 0 0;
    overflow: hidden;
    object-fit: contain;
}

#Section>div>div>img {
    width: 100%;
    height: 100%;
}

#order-section>div>button {
    border-radius: 50px;
    padding: 20px 70px;
    margin-top: 80px;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10%;
    border: none;
    background-color: rgb(255, 196, 189);
}

h2 {
    font-size: 20px;
    margin-bottom: 5%;
}

/* For Medium Screen (For Tablet)*/
@media all and (min-width: 481px) and (max-width:768px) {
    #Sub-Section {
        padding: 20px;
        width: 50%;
    }

    #Sub-Section h1 {
        font-size: 40px;
    }

    #Sub-Section p {
        width: 80%;
        line-height: 22px;
    }

    #order-section {
        margin-top: 2%;
    }

    #Section {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    #order-section>div>button {
        margin-bottom: 17%;
    }
}

/* For Small Screen (For Mobile Screen)*/
@media all and (min-width: 320px) and (max-width:480px) {
    #Sub-Section {
        padding: 20px;
        width: 60%;
    }

    #Sub-Section h1 {
        font-size: 30px;
    }

    #Sub-Section p {
        width: 100%;
        line-height: 18px;
    }

    #order-section {
        margin-top: 3%;
    }

    #Section {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    #order-section>div>button {
        margin-bottom: 25%;
    }
}