@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  font-size: 18px;
}

body {
  background-color: #0d192b;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Outfit', sans-serif;
  color: #8bacda;
}

.card {
  padding: 20px;
  background-color: #14253d;
  width: 310px;
  height: 560px;
  border-radius: 20px;
}

img {
  height: 300px;
  width: 100%;
  border-radius: 10px;
}

h1 {
  color: white;
  font-weight: 600;
  margin: 20px 0;
}

hr {
  border: 1px solid #2f415b;
}

.card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0;
}

.card__content__eth {
  color: #00fff7;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
}

.card__content__eth img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 10%;
  height: 60%;
}

.card__content__creator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.card__content__creator span {
  color: white;
}

.card__content__left {
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card__content__left img {
  width: 15%;
  height: 25%;
}

.card__content__creator img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  border: 1px solid white;
  border-radius: 50%;
  width: 10%;
  height: 10%;
  margin-right: 10px;
}

span:hover {
  color: cyan;
  cursor: pointer;
}

h1:hover {
  color: cyan;
  cursor: pointer;
}

.overlay {
  position: absolute;
  top: 0rem;
  left: 0rem;
  right: 0rem;
  bottom: 0;
  height: 98%;
  width: 100%;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  background-color: #00fff7;
  border-radius: 5%;
}

.container:hover .overlay {
  opacity: 0.5;
  cursor: pointer;
}

.container {
  position: relative;
  width: 100%;
}

.view {
  width: 15%;
  height: 15%;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
}

.container:hover .view {
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */