*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

body{
  background-image: url('lebelo-creations/lebelo-logo.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(255,255,255,0.7); /* light overlay */
  z-index:-1;
}
/* HEADER */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  background:#000;
}

.logo img{
  height:40px;
}

nav a{
  color:#fff;
  margin-left:15px;
  text-decoration:none;
}

/* TITLE */
.title{
  text-align:center;
  padding:40px 20px;
}
/* HERO */
.hero{
  text-align:center;
  padding:60px 20px;
}

.btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 25px;
  background:#25D366;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
}

/* GALLERY */
.gallery{
  padding:40px 20px;
  text-align:center;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
}

.grid img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:10px;
  transition:0.3s;
}

.grid img:hover{
  transform:scale(1.05);
}