* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satisfy", cursive;
}
body{
 font-family: "Poppins", sans-serif;

}

html{
  scroll-behavior: smooth;
}
header{
  position: sticky;
  top: 0;
  background: white;
  z-index: 999;
}

.navbar {
  padding: 20px 200px;
  display: flex;
  
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}
.logo img {
  width: 100px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  transition: 0.3s;
}

.navbar ul li a:hover {
  color: #0077ff;
}


.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 64px;
  padding: 50px 200px;
  height: 100vh;

}
.hero-img img{
  width:  400px;
  height: 400px;
  object-fit: cover;
}
.hero-text {
  max-width: 50%;
   
}

.hero-text h1 {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #000;
  font-weight: 800;
}

.hero-text p {
  font-size: 20px;
  width: 450px;
  margin-bottom: 25px;
  font-family: "Satisfy", cursive;
  color: #333;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #000;
  color: #fff;
}



.hero-img img {
  width: 388;
  height: 385;
  transition: 0.3s;
  border-radius: 40px;
  border: 2px black;
}

.hero-img img:hover {
  transform: scale(1.1);
  transition: 0.3s;

}
.hero-img img:hover{
  box-shadow: 0px 0px 30px blue;

}

.box {
  display: flex;
  justify-content: center;
  align-items: center;

}

.cards {
  display: flex;
  gap: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  padding: 90px 130px;

}

.box2 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.box3 {
  background-color: #EBEBEB;
  padding: 8px 20px;
  border-radius: 60px;
}

.card {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 24px;

}

.card img{
  width: 100%;
  border: 2px solid grey;
  border-radius: 20px;
}