/* Global Color */
/* Fonts */
@font-face {
  font-family: Outfit;
  src: url(https://fonts.google.com/specimen/Outfit);
}

/* Main Components CSS */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  font-size: 1.125rem;
  background-color: #0d192b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Images and Text */
img {
  width: 100%;
}

h1 {
  font-weight: 600;
  color: white;
  font-size: 22px;
}

h1:hover {
  color: #00fff7;
  cursor: pointer;
}

.creator-name {
  color: white;
}

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

.text-des {
  color: #8bacda;
  font-weight: 300;
  font-size: 18px;
}

.eth-text {
  color: #00fff7;
  font-size: 16px;
}

.days-text {
  color: #8bacda;
  font-size: 16px;
}

.creator-text {
  color: #8bacda;
  font-weight: 300;
  font-size: 1rem;
}

.card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
  margin-top: 30px;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.25);
}

.creator-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  padding: 14px 7px 0px;
}

/* NFT */
.card-main {
  border-radius: 10px;
  background-color: #14253d;
  width: 350px;
  -webkit-box-shadow: 0px 2px 16px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 16px 2px rgba(0, 0, 0, 0.2);
  padding: 23px;
  margin-bottom: 20px;
}

.image-container {
  position: relative;
}

.main-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  border-radius: 10px;
  background-color: #00fff7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.view-icon {
  height: 50px;
  width: 50px;
}

.image-container:hover .overlay {
  opacity: 0.6;
}

.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
}

.eth-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.eth-icon {
  width: 13px;
  height: 20px;
}

.clock-icon {
  width: 15px;
  height: 15px;
}

.creator-avatar {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  border-radius: 50%;
}

.attribution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 40px;
  text-align: center;
  color: #8bacda;
}

.attribution a {
  position: relative;
  text-decoration: none;
  color: white;
}
/*# sourceMappingURL=stylesheet.css.map */