* {
  padding: 0px;
  margin: 0px;
}

body {
  background-color: rgb(255, 251, 251);
}

#navbar {
  background-color: rgb(66, 166, 58);
  height: 60px;
  display: flex;
}

#sec {
  font-size: 30px;
  color: white;
}

#seco {
  color: white;
}

.left-side {
  display: flex;
}

.left-side img {
  padding: 10px;
  margin-left: 20px;
}

#name {
  display: flex;
}

#demos {
  padding-left: 600px;
  padding-top: 20px;
  font-size: 20px;
  color: white;
}

#page2 {
  padding-top: 20px;
  padding-left: 50px;
  color: white;
  font-size: 20px;
}

.main {
  display: flex;
  justify-content: center;
}

.mini {
  height: 250px;
  width: 250px;
  background-color: rgb(255, 255, 255);

  filter: drop-shadow(20px 20px 20px rgba(0, 0, 0, 0.048));
  border-radius: 10px;
  text-align: center;
  margin: 20px;
}

p {
  font-size: 20px;
  margin-top: 25px;
}

button {
  background-color: white;
  width: 175px;
  font-size: large;
  border-radius: 5px;
  height: 40px;
  margin: 10px 100px;
  border-style: none;

}

.img img {
  height: 100px;
  padding-top: 20%;
}

img:hover {
  transform: scale(1.4);
  transition: 3s;
}

/* button:hover{background: black; color: white; transition: 1s;} */

button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background-color: #f2f6f8;
  color: #0a0a0a;
  text-decoration: none;
  overflow: hidden;
}

button::before {
  content: 'purchase now';
  padding-top: 10px;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #030303;
  color: white;
  transition: left 0.5s ease-out;
}

button:hover::before {
  left: 0;
}