@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  background-color: #e7dfdf;
}

h1{
    text-align: center;
    margin-bottom: 50px;
}

.container{
    display: flex;
    max-width: 1200px;
    margin: 0px auto;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 15px;
    
}

.product-card{
    display: flex;
    flex-direction: column;
    width: 300px;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 8px 8px #8f8989;
    transition: background-color 0.5 ease;
    transition: transform 0.5s ease;
}

.image img{
    width: 100%;
    height: 250px;  
}

h2{
    color: rgb(74, 163, 214);
    font: 1.5rem;
    margin: 10px 0;
}

.description{
    color: rgb(229, 24, 248);
    margin-bottom: 20px;
}

.price{
    font-size: 1.5rem;
    font-weight: bolder;
    color: rgb(145, 255, 0);
    margin-bottom: 15px;
}

.btn{
    width: 100%;
    background-color: rgb(40, 172, 233);
    padding: 10px;
    color: white;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.5 ease;
    border: none;
}

.product-card:hover{
    background-color: rgba(240, 173, 231, 0.705);
    transform: translateY(50px);
}

.btn:hover{
    background-color: blue;
}

