@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:wght@400;600&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  height: 100vh;
  background-color: #6B6B6B;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  width: 600px;
  height: 400px;
  background: #3c6382;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; /*23*/
  position: relative;
  z-index: 0;
}
.box:hover .pic {
  width: 50%;
  cursor: pointer;
}

.pic {
  width: 100%;
  height: 100%;
  background-image: url("../images/strawberry.jpg");
  background-size: cover;
  transition: all 0.5s linear;
  position: absolute;
  z-index: 2;
}

.content {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  padding: 10px;
}

.title {
  font-weight: 600;
  font-size: 20px;
  color: #b8e994;
  margin: 10px 0px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #FFDEBC;
}

.para {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: white;
}

.readmore {
  text-decoration: none;
  color: #b8e994;
  display: block;
}

/*# sourceMappingURL=style.css.map */
