/*GENERAL*/
*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*CARD*/
body {
  background: hsl(217, 54%, 11%);
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
}

main {
  margin: 10% auto;
}

.card {
  background: hsl(216, 50%, 16%);
  padding: 25px;
  border-radius: 30px;
  margin: 0 auto;
  width: 350px;
  font-family: "Outfit", sans-serif;
  box-shadow: 0px 45px 30px 30px hsl(217, 54%, 11%), 0px 25px 20px 60px hsl(216, 50%, 13%);
}
.card .img1 {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}
.card .imgd {
  position: relative;
}
.card .view {
  background: rgba(0, 255, 247, 0.5);
  position: absolute;
  border-radius: 8px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  opacity: 0;
  width: 100%;
  height: 99%;
  z-index: 1;
}
.card .view:hover, .card .view:active {
  opacity: 1;
}
.card h2 {
  margin: 15px 0;
  color: hsl(0, 0%, 100%);
  font-weight: 400;
}
.card h2:active, .card h2:hover {
  color: hsl(178, 100%, 50%);
}
.card .text p {
  font-size: 18px;
  color: hsl(215, 51%, 70%);
  margin-bottom: 25px;
}
.card .price {
  display: flex;
  flex-direction: row;
}
.card .price .price1 {
  display: flex;
  flex-direction: row;
  width: 50%;
  font-weight: 400;
  color: hsl(178, 100%, 50%);
}
.card .price .price2 {
  display: flex;
  flex-direction: row;
  width: 50%;
  justify-content: end;
  color: hsl(215, 51%, 70%);
  font-weight: 300;
}
.card .price p {
  margin-left: 6px;
}
.card .divider {
  margin: 25px 0;
  border: none;
  height: 1px;
  background: hsl(215, 32%, 27%);
}
.card .avatar {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  color: hsl(215, 51%, 70%);
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 18px;
}
.card .avatar .img4 {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  border: solid 1px hsl(0, 0%, 100%);
  border-radius: 100%;
}
.card .avatar span {
  color: hsl(0, 0%, 100%);
}
.card .avatar span:active, .card .avatar span:hover {
  color: hsl(178, 100%, 50%);
}

footer {
  margin: 30px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}
footer .attribution {
  margin-bottom: 0px;
  font-size: 15px;
  font-weight: lighter;
  color: hsl(0, 0%, 100%);
}
footer a {
  text-decoration: none;
}



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