*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffefc;
  color: #333;
  line-height: 1.6;
}

header {
  background-color:#98cce2;
  color: rgb(21, 20, 20);
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.login-btn, .register-btn {
  background-color: white;
  color: #ff4081;
  border: none;
  padding: 5px 12px;
  margin-left: 10px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.login-btn:hover, .register-btn:hover {
  background-color: #ffe4ee;
}

.banner {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.banner img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 30%;
  left: 10%;
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.banner-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.banner-text button {
  padding: 12px 25px;
  background-color: #ff4081;
  border: none;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

main {
  padding: 30px;
  text-align: center;
}

.product-category {
  margin-bottom: 40px;
}

.product-category h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e91e63;
}

.product {
  display: inline-block;
  margin: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff0f5;
  width: 200px;
}

.product img {
  width: 100%;
  border-radius: 6px;
}

.product p {
  margin-top: 10px;
  font-weight: bold;
}

footer {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
