body{
    color: #21242a;
    margin: 0;
    padding: 0;

}
header {
    background-color: rgb(228, 64, 113);
    color: #0ce7dc;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    color: rgb(240, 192, 215);
    text-decoration: none;
    font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: none;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: hsl rgb(221, 53, 104);
    color: #0ce7dc;
    padding: 12px 24px;
    margin-top: 20px;
    text-decoration: none;
}

.content {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product {
    text-align: center;
    max-width: 200px;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.gallery {
    display: flex;

}