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

body {
  background-color: #0D1A2D;
}

.container {
  height: 100vh;
  display: flex;
}

.card {
  margin: auto;
  width: 360px;
  min-height: 520px;
  background-color: #15273F;
  border-radius: 16px;
}


.visual {
  height: 300px;
  margin: 26px;
  border-radius: 8px;
  background-image: url("../images/image-equilibrium.jpg");
  background-size: cover;
}


.description, .price, .author > p, .time {
  font-family: 'Outfit', sans-serif;
}

.description > h1 {
  color: white;
  font-weight: 600;
  font-size: 22px;
  margin-left: 26px;
}

.description > p {
  color: #6A7F9F;
  font-weight: 300;
  font-size: 18px;
  margin: 20px 26px 0 26px;
}

.behaviors {
  display: flex;
  justify-content: space-between;
}


.price {
  display: flex;
  color: #00fff7;
  margin: 12px auto 12px 26px;
  white-space: nowrap;
}



.time {
  display: flex;
  margin: 12px 26px 12px auto;
  align-items: flex-end;
  color: #8CA4C7;
}


.author {
  border-top: 1px rgba(140, 164, 199, 0.2) solid;
  font-weight: 300;
  position: relative;
  color: #8CA4C7;
  text-align: center;
  padding: 24px 12px 12px 0;
  margin: 12px 26px 24px 26px;
}

.icon {
  margin-right: 8px;
}

.avatar {
  position: absolute;
  top: 16px;
  left: 0px;
  height: 35px;
  border-radius: 50%;
  border: 1px white solid;
  /* box-shadow: 0 1px 2px rgb(255, 255, 255); */
}


.name {
  color: #F8FDFF;
}

.visual:hover  {
  color: #00fff7;
}

.description > h1:hover {
  color: rgb(0, 255, 247);
  cursor: pointer;
}

.name:hover {
  color: rgb(0, 255, 247);
  cursor: pointer;
}

.visual:hover {
  background: url("../images/icon-view.svg"),
      linear-gradient(
      rgba(0, 255, 247, 0.6),
      rgba(0, 255, 247, 0.5)
    ), url("../images/image-equilibrium.jpg");
  background-size: 15%, contain, cover;
  background-repeat: no-repeat;
  background-position-x: 50%, 0%, 0%;
  background-position-y: 50%, 0%, 0%;
  cursor: pointer;


}
