body {
    margin: 0;
    font-family: 'https://fonts.googleapis.com/css2?family=Fleur+De+Leah&display=swap', cursive;
    background-color: tan;
    color: darkgreen;
}



/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;

    background-color: darkgreen;
}
.title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: tan;
  font-size: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 90px;
}

.menu-icon {
    color: black;
    font-size: 60px;
    cursor: pointer;
}


/* PRODUCT SECTIONS */

main {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
}

.product {
    width: 250px;
    text-align: center;

    background-color: white;
    padding: 20px;

    border-radius: 10px;
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product h2 {
    margin-top: 10px;
}

.product p {
    font-size: 14px;
}




/* BUTTON */

button {
    margin-top: 10px;
    padding: 10px 20px;

    border: none;
    border-radius: 5px;

    background-color: darkgreen;
    color: white;

    font-family: inherit;
    cursor: pointer;
}

button:hover {
    background-color: green;
}