*{
    margin: 0;
    padding: 0;
}
body{
    padding: 0px 20px;
}
main{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.home{
    background-image: url(https://t4.ftcdn.net/jpg/03/13/65/17/360_F_313651795_OUrd7HrFYuxo9LXuuREFvRyIPeEfVSLj.jpg);
    background-size: cover;
    padding: 50px 120px;
    color: rgb(255, 255, 255);
    text-align: right;
    height: 70vh;
    border-radius: 20px;

}
.home h1{
    font-size: 50px;
}
#title-home{
    color: black;
}
.home button{
    background: #000000;
    color: white;
    padding: 10px 30px;
    margin-top: 20px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.home button:hover{
    background: white;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
/* famust-product */
.famust-product1{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.famust-product h2{
    margin-bottom: 10px;
}
.top-cloth{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
}
.NEW-Nike{
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 20px;
}
.NEW-Nike img{
    height: 250px;
}
.name-cloth{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.name-cloth p{
    color: gray;
}
#button{
    background: #ffd344;
    font-weight: bold;
    padding: 8px 20px;
    margin-top: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
#button:hover{
    background: white;
    color: #ffd344;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.famust-product2{
    background: #e9e9e9;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* border-radius: 20px; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.famust-product2 img{
    height: 400px;
}
.Pleated{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.Pleated h2{
    color: #100c51;
}

.Nike-Sportswear{
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
}
.Nike-Sportswear img{
    height: 360px;
}
.Sportswear{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.Sportswear h2{
    text-align: center;
    color: #000000;
}
#Sportswear-1{
    color: #ff0d0d;
}
#Sportswear-2{
    color: #25afff;
}

/* template tablate */
@media (max-width:899px) and (min-width:700px){
    .home{
    padding: 20px 40px;
    height: 400px;
    font-size: 12px;
    }
    .top-cloth{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .top-cloth img{
        height: 200px;
    }
    .Nike-Sportswear{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .Nike-Sportswear img{
        height: 400px;
    }
    .Sportswear{
        background: #efefef;
    }
}

/* template mobile phone */
@media (max-width:699px) and (min-width:350px){
    .home{
        padding: 15px;
        height: 30vh;
    }
    .home h1{
        font-size: 18px;
    }
    .home p{
        font-size: 10px;
    }
    .home button{
        padding: 5px 10px;
        font-size: 10px;
    }
    .top-cloth{
        display: flex;
        flex-direction: column;
    }
    .NEW-Nike{
        display: flex;
        justify-content: space-between;
    }
    .top-cloth img{
        height: 150px;
    }
    .famust-product2{
        display: flex;
        flex-direction: column;
    }
    .Nike-Sportswear{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .Nike-Sportswear img{
        height: 117px;
    }
    .Sportswear{
        grid-column: span 3;
        margin-bottom: 20px;
    }

}