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

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #0d192b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

a {
  text-decoration: none;
}

.card {
  width: 326px;
  height: 543px;
  background-color: #14253d;
  box-shadow: 0px 18px 4px 16px #0C1729;
  border-radius: 12px;
  padding: 2.4rem;
}

@media (min-width: 767px) {
  .card {
    width: 350px;
    height: 594px;
  }
}

.card__image {
  width: 27.8rem;
  height: 27.8rem;
  border-radius: 12px;
  transition: background-color .5s ease-in-out;
}

.card__image .image-view {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity .5s ease-in-out;
}

.card__image .image-view:hover {
  opacity: .4;
}

.card__image:hover {
  background: url("../images/icon-view.svg") no-repeat center, #00fff7;
  cursor: pointer;
}

@media (min-width: 767px) {
  .card__image {
    width: 30.1rem;
  }
}

.card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  margin-top: 2.4rem;
  transition: .5s ease-in-out;
}

.card__title:hover {
  color: #00fff7;
  cursor: pointer;
}

@media (min-width: 767px) {
  .card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
  }
}

.card__paraghaph {
  margin-top: 1.1rem;
  line-height: 2.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #8bacda;
}

@media (min-width: 767px) {
  .card__paraghaph {
    margin-top: 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #8bacda;
    line-height: 2.4rem;
  }
}

.card__details {
  margin-top: 2rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2f415b;
}

@media (min-width: 767px) {
  .card__details {
    margin-top: 2.6rem;
    padding-bottom: 2.4rem;
  }
}

.card__details .left {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #00fff7;
}

.card__details .left::before {
  content: '';
  width: 11px;
  height: 18px;
  margin-right: .8rem;
  display: inline-block;
  background-image: url("../images/icon-ethereum.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 767px) {
  .card__details .left {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #00fff7;
  }
}

.card__details .right {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #8bacda;
}

.card__details .right::before {
  content: '';
  width: 13.33px;
  height: 13.33px;
  margin-right: .8rem;
  display: inline-block;
  background-image: url("../images/icon-clock.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 767px) {
  .card__details .right {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #8bacda;
  }
}

.card__profile {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 16px;
}

@media (min-width: 767px) {
  .card__profile {
    margin-top: 1.8rem;
  }
}

.card__profile-image {
  width: 34px;
  border: solid 1px white;
  border-radius: 50%;
}

.card__profile-creation {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #8bacda;
}

.card__profile-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  transition: .5s ease-in-out;
}

.card__profile-name:hover {
  color: #00fff7;
  cursor: pointer;
}
