* {
  font-family: "Inter", sans-serif;
}

html{
  scroll-behavior: smooth;
}

.logo{
  width: 50px;
  border-radius: 4px;
  height: 40px;
}

.company_name{
  line-height: 18px;
}

.hero-text{
    color: rgb(31, 30, 30);
}

.just-print {
  object-fit: cover;
  width: 250px;
  height: 250px;
}

.wrapper {
  max-width: 1100px;
  margin: auto;
  overflow: auto;
  padding: 0 2rem;
}

.image-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  margin-bottom: 2rem;
}

.image-cover img {
  height: 400px;
}

.image-cover > div {
  padding: 2rem;
}

.image-cover:nth-child(even) img {
  order: 2;
}

.buy-now-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.8rem 1.8rem;
  margin-top: 2rem;
  cursor: pointer;
}

.buy-now-btn:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .image-cover {
    display: block;
  }
}


/* reviews */
.review-container{
  background-color: ghostwhite;
  color: rgb(19, 18, 18);
  padding: 24px;
  border-radius: 2px;
}

.review-container:hover{
  box-shadow: 2px 2px 2px 2px;
  cursor: pointer;
}
