@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    list-style-type: none;
}

.container{
    padding: 50px 172px;
}

header{
    background-color: #000;
}
header .container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap:50px;
    align-items: center;
}
footer{
    background-color: #E99ADE;
}
footer .container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap:50px;
    align-items: center;
}
.logo{
    width: 217px;
}
input{
    width: 700px;
    height: 50px;
    border-radius: 20px;
    border: 5px solid #fff;
    background-color: #E99ADE;
    padding: 10px;
    color: #fff;
}
input::placeholder{
    color: #fff;
}
ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    font-size: 36px;
}

.nav-bar{
    width: 100vw;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.nav1{
    background-color: #30042A;
    color: #fff;
    width: 25%;
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav2{
    background-color: #E99ADE;
    color: #fff;
    width: 25%;
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero{
    width: 100vw;
    height: 100%;
}

main .container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
}
.card-product{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    border-radius: 20px;
}
.description{
    background-color: #E99ADE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 300px;
    height: 92px;
    border-radius: 20px;
    border-top-left-radius:0px ;
    border-top-right-radius:0px ;
    margin-top: 10px;
    color: #fff;
    padding: 20px;
}
.product{
    width: 300px;
    height: 208px;
}
.description a{
    text-decoration: none;
    color: #30042A;
    font-weight: 700;
}
.description a:hover{
    color: #fff;
}